projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ab4a1f2
)
fs/proc/root.c: use NULL instead of 0 for pointer
author
Sachin Kamat
<sachin.kamat@linaro.org>
Fri, 5 Oct 2012 00:15:46 +0000
(17:15 -0700)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Fri, 5 Oct 2012 18:05:19 +0000
(
03:05
+0900)
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>
fs/proc/root.c
patch
|
blob
|
history
diff --git
a/fs/proc/root.c
b/fs/proc/root.c
index 9a2d9fd7cadd2acde77a4e00615f9bbafefc8d96..9889a92d2e01773113a5c7db29975cb47d7dcb1d 100644
(file)
--- 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)
if (!*p)
continue;
- args[0].to = args[0].from =
0
;
+ args[0].to = args[0].from =
NULL
;
token = match_token(p, tokens, args);
switch (token) {
case Opt_gid: