commit | 535694f361419ca195fd915dd5038c926334e1be | [log] [tgz] |
---|---|---|
author | Thomas Gleixner <tglx@linutronix.de> | Mon May 12 15:43:35 2008 +0200 |
committer | Thomas Gleixner <tglx@linutronix.de> | Sun May 25 08:58:25 2008 +0200 |
tree | e03d2d89d49e1bd60c5d5c3fe36926954dffad51 | |
parent | eef8f871d84b5df1a24902a4e4700188be1aff2c [diff] [blame] |
x86: boot/printfc use NULL instead 0 Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
diff --git a/arch/x86/boot/printf.c b/arch/x86/boot/printf.c index c1d00c02..50e47cd 100644 --- a/arch/x86/boot/printf.c +++ b/arch/x86/boot/printf.c
@@ -56,7 +56,7 @@ if (type & LEFT) type &= ~ZEROPAD; if (base < 2 || base > 36) - return 0; + return NULL; c = (type & ZEROPAD) ? '0' : ' '; sign = 0; if (type & SIGN) {