dect
/
linux-2.6
Archived
13
0
Fork 0

x86: boot/printfc use NULL instead 0

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Thomas Gleixner 2008-05-12 15:43:35 +02:00
parent eef8f871d8
commit 535694f361
1 changed files with 1 additions and 1 deletions

View File

@ -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) {