Loading arch/x86/boot/printf.c +1 −1 Original line number Diff line number Diff line Loading @@ -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) { Loading Loading
arch/x86/boot/printf.c +1 −1 Original line number Diff line number Diff line Loading @@ -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) { Loading