diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2006-03-25 06:07:08 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-25 11:22:52 -0500 |
commit | 21e4f9526989009282fe26280560ff3fbc21c9e0 (patch) | |
tree | c47996deedb93331a3ad90cad8d96d9a50dc22f4 | |
parent | 2c3ca07d2f691a463b715c83122c87f57c2a7b7c (diff) |
[PATCH] fix 'defined but not used' warning in net/rxrpc/main.c::rxrpc_initialise
net/rxrpc/main.c: In function `rxrpc_initialise':
net/rxrpc/main.c:83: warning: label `error_proc' defined but not used
Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | net/rxrpc/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/main.c b/net/rxrpc/main.c index 36fdcbcd80d1..48cbd065bb45 100644 --- a/net/rxrpc/main.c +++ b/net/rxrpc/main.c | |||
@@ -79,8 +79,8 @@ static int __init rxrpc_initialise(void) | |||
79 | error_sysctl: | 79 | error_sysctl: |
80 | #ifdef CONFIG_SYSCTL | 80 | #ifdef CONFIG_SYSCTL |
81 | rxrpc_sysctl_cleanup(); | 81 | rxrpc_sysctl_cleanup(); |
82 | #endif | ||
83 | error_proc: | 82 | error_proc: |
83 | #endif | ||
84 | #ifdef CONFIG_PROC_FS | 84 | #ifdef CONFIG_PROC_FS |
85 | rxrpc_proc_cleanup(); | 85 | rxrpc_proc_cleanup(); |
86 | #endif | 86 | #endif |