Merge to Fedora kernel-2.6.7-1.492
[linux-2.6.git] / lib / vsprintf.c
index 4969239..b1f5c9d 100644 (file)
@@ -154,7 +154,7 @@ static char * number(char * buf, char * end, unsigned long long num, int base, i
        if (type & LEFT)
                type &= ~ZEROPAD;
        if (base < 2 || base > 36)
-               return 0;
+               return NULL;
        c = (type & ZEROPAD) ? '0' : ' ';
        sign = 0;
        if (type & SIGN) {