All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] SCTP: fix compile warning building without CONFIG_IPV6
@ 2008-03-24  6:11 Li Zefan
  2008-03-24  6:51 ` David Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Li Zefan @ 2008-03-24  6:11 UTC (permalink / raw)
  To: David Miller; +Cc: vladislav.yasevich, sri, lksctp-developers, LKML

include/net/sctp/sctp.h: In function ‘sctp_v6_pf_init’:
include/net/sctp/sctp.h:392: warning: 'return' with a value, in function returning void

This warning repeats several times.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 include/net/sctp/sctp.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h
index 57ed3e3..ea80673 100644
--- a/include/net/sctp/sctp.h
+++ b/include/net/sctp/sctp.h
@@ -389,7 +389,7 @@ void sctp_v6_del_protocol(void);
 
 #else /* #ifdef defined(CONFIG_IPV6) */
 
-static inline void sctp_v6_pf_init(void) { return 0; }
+static inline void sctp_v6_pf_init(void) { return; }
 static inline void sctp_v6_pf_exit(void) { return; }
 static inline int sctp_v6_protosw_init(void) { return 0; }
 static inline void sctp_v6_protosw_exit(void) { return; }
-- 
1.5.4.rc3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-03-24  7:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-24  6:11 [PATCH] SCTP: fix compile warning building without CONFIG_IPV6 Li Zefan
2008-03-24  6:51 ` David Miller
2008-03-24  7:01   ` Li Zefan
2008-03-24  7:47     ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.