diff mbox

[net-next] sctp: add function parameter names to fix compile error

Message ID 1345028427-22092-1-git-send-email-jiri@resnulli.us
State Not Applicable, archived
Delegated to: David Miller
Headers show

Commit Message

Jiri Pirko Aug. 15, 2012, 11 a.m. UTC
Commit 13d782f6 introduced this problem.

Cc: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Jiri Pirko <jiri@resnulli.us>
---
 include/net/sctp/sctp.h |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

David Miller Aug. 15, 2012, 9:07 p.m. UTC | #1
From: Jiri Pirko <jiri@resnulli.us>
Date: Wed, 15 Aug 2012 13:00:27 +0200

> Commit 13d782f6 introduced this problem.
> 
> Cc: Eric W. Biederman <ebiederm@xmission.com>
> Signed-off-by: Jiri Pirko <jiri@resnulli.us>

I already integrated a patch to fix this, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h
index aaa8292..9c6414f 100644
--- a/include/net/sctp/sctp.h
+++ b/include/net/sctp/sctp.h
@@ -367,8 +367,8 @@  void sctp_dbg_objcnt_exit(struct net *);
 #define SCTP_DBG_OBJCNT_INC(name)
 #define SCTP_DBG_OBJCNT_DEC(name)
 
-static inline void sctp_dbg_objcnt_init(struct net *) { return; }
-static inline void sctp_dbg_objcnt_exit(struct net *) { return; }
+static inline void sctp_dbg_objcnt_init(struct net *net) { return; }
+static inline void sctp_dbg_objcnt_exit(struct net *net) { return; }
 
 #endif /* CONFIG_SCTP_DBG_OBJCOUNT */