Merge Linus' tree to be be to apply submitted patches to newer code than
[cascardo/linux.git] / arch / x86 / boot / printf.c
index cdac91c..565083c 100644 (file)
@@ -55,7 +55,7 @@ static char *number(char *str, long num, int base, int size, int precision,
        locase = (type & SMALL);
        if (type & LEFT)
                type &= ~ZEROPAD;
-       if (base < 2 || base > 36)
+       if (base < 2 || base > 16)
                return NULL;
        c = (type & ZEROPAD) ? '0' : ' ';
        sign = 0;