diff options
author | Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp> | 2009-02-12 01:53:38 -0500 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2009-02-12 04:21:10 -0500 |
commit | 35d50e60e8b12e4adc2fa317343a176d87294a72 (patch) | |
tree | d4374d08677dafdf940fc8bdaaadc0aeefa06126 /security | |
parent | 42d5aaa2d826f54924e260b58a8e410e59d54163 (diff) |
tomoyo: fix sparse warning
Fix sparse warning.
$ make C=2 SUBDIRS=security/tomoyo CF="-D__cold__="
CHECK security/tomoyo/common.c
CHECK security/tomoyo/realpath.c
CHECK security/tomoyo/tomoyo.c
security/tomoyo/tomoyo.c:110:8: warning: symbol 'buf' shadows an earlier one
security/tomoyo/tomoyo.c:100:7: originally declared here
Signed-off-by: Kentaro Takeda <takedakn@nttdata.co.jp>
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: Toshiharu Harada <haradats@nttdata.co.jp>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/tomoyo/tomoyo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/tomoyo/tomoyo.c b/security/tomoyo/tomoyo.c index f3ab20758c0f..cc599b36a3a8 100644 --- a/security/tomoyo/tomoyo.c +++ b/security/tomoyo/tomoyo.c | |||
@@ -107,13 +107,13 @@ static char *tomoyo_sysctl_path(struct ctl_table *table) | |||
107 | *--end = '\0'; | 107 | *--end = '\0'; |
108 | buflen--; | 108 | buflen--; |
109 | while (table) { | 109 | while (table) { |
110 | char buf[32]; | 110 | char num[32]; |
111 | const char *sp = table->procname; | 111 | const char *sp = table->procname; |
112 | 112 | ||
113 | if (!sp) { | 113 | if (!sp) { |
114 | memset(buf, 0, sizeof(buf)); | 114 | memset(num, 0, sizeof(num)); |
115 | snprintf(buf, sizeof(buf) - 1, "=%d=", table->ctl_name); | 115 | snprintf(num, sizeof(num) - 1, "=%d=", table->ctl_name); |
116 | sp = buf; | 116 | sp = num; |
117 | } | 117 | } |
118 | if (tomoyo_prepend(&end, &buflen, sp) || | 118 | if (tomoyo_prepend(&end, &buflen, sp) || |
119 | tomoyo_prepend(&end, &buflen, "/")) | 119 | tomoyo_prepend(&end, &buflen, "/")) |