summary refs log tree commit diff
path: root/net/netlink
diff options
context:
space:
mode:
authorBrian Haley <brian.haley@hp.com>2009-09-04 20:36:52 -0700
committerDavid S. Miller <davem@davemloft.net>2009-09-04 20:36:52 -0700
commitb1f57195585e376d1944c32c046359640b06a669 (patch)
tree5e49a5e0077520f92e4e2bfd57caf90e303784ae /net/netlink
parentf1751c57f7bb816c9b6b4cb5d79c703aaa7199da (diff)
downloadlinux-b1f57195585e376d1944c32c046359640b06a669.tar.gz
netlink: silence compiler warning
  CC      net/netlink/genetlink.o
net/netlink/genetlink.c: In function ‘genl_register_mc_group’:
net/netlink/genetlink.c:139: warning: ‘err’ may be used uninitialized in this function

From following the code 'err' is initialized, but set it to zero to
silence the warning.

Signed-off-by: Brian Haley <brian.haley@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netlink')
-rw-r--r--net/netlink/genetlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c
index 575c64341508..66f6ba0bab11 100644
--- a/net/netlink/genetlink.c
+++ b/net/netlink/genetlink.c
@@ -136,7 +136,7 @@ int genl_register_mc_group(struct genl_family *family,
 {
 	int id;
 	unsigned long *new_groups;
-	int err;
+	int err = 0;
 
 	BUG_ON(grp->name[0] == '\0');