diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-10-04 20:15:46 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-05 14:05:19 -0400 |
commit | 9fb88442105f5fce96ea343927500d6307c8c550 (patch) | |
tree | 562d853ed47cab5911cbd97d55a1061233824651 /fs/proc | |
parent | ab4a1f247003ad146c1a1067b2ba043922d0dff2 (diff) |
fs/proc/root.c: use NULL instead of 0 for pointer
This cleanup also fixes the following sparse warning:
fs/proc/root.c:64:45: warning: Using plain integer as NULL pointer
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/root.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/root.c b/fs/proc/root.c index 9a2d9fd7cadd..9889a92d2e01 100644 --- a/fs/proc/root.c +++ b/fs/proc/root.c | |||
@@ -61,7 +61,7 @@ static int proc_parse_options(char *options, struct pid_namespace *pid) | |||
61 | if (!*p) | 61 | if (!*p) |
62 | continue; | 62 | continue; |
63 | 63 | ||
64 | args[0].to = args[0].from = 0; | 64 | args[0].to = args[0].from = NULL; |
65 | token = match_token(p, tokens, args); | 65 | token = match_token(p, tokens, args); |
66 | switch (token) { | 66 | switch (token) { |
67 | case Opt_gid: | 67 | case Opt_gid: |