diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-05-23 00:45:06 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-05-23 17:11:06 +0200 |
commit | 7fafd91d85181e946207bed18c44addc47e36c63 (patch) | |
tree | 9518d774be033e3a0353ff6790b6010532e8a18a /arch/x86/boot/printf.c | |
parent | Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6 (diff) | |
download | linux-7fafd91d85181e946207bed18c44addc47e36c63.tar.xz linux-7fafd91d85181e946207bed18c44addc47e36c63.zip |
x86: fix integer as NULL pointer warning
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>
Diffstat (limited to 'arch/x86/boot/printf.c')
-rw-r--r-- | arch/x86/boot/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/boot/printf.c b/arch/x86/boot/printf.c index c1d00c0274c4..50e47cdbdddd 100644 --- 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) { |