projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75d3bce
)
x86: fix integer as NULL pointer warning
author
Harvey Harrison
<harvey.harrison@gmail.com>
Thu, 22 May 2008 22:45:06 +0000
(15:45 -0700)
committer
Linus Torvalds
<torvalds@linux-foundation.org>
Fri, 23 May 2008 15:11:06 +0000
(08:11 -0700)
arch/x86/boot/printf.c:59:10: warning: Using plain integer as NULL pointer
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/x86/boot/printf.c
patch
|
blob
|
history
diff --git
a/arch/x86/boot/printf.c
b/arch/x86/boot/printf.c
index c1d00c0274c4888c203ac186b4f3930791669be4..50e47cdbdddd4234f78ab88028407c0aeccd8497 100644
(file)
--- a/
arch/x86/boot/printf.c
+++ b/
arch/x86/boot/printf.c
@@
-56,7
+56,7
@@
static char *number(char *str, long num, int base, int size, int precision,
if (type & LEFT)
type &= ~ZEROPAD;
if (base < 2 || base > 36)
- return
0
;
+ return
NULL
;
c = (type & ZEROPAD) ? '0' : ' ';
sign = 0;
if (type & SIGN) {