--- Gnu-Mach/linux/dev/lib/vsprintf.c 2020/09/02 04:41:39 1.1.1.1 +++ Gnu-Mach/linux/dev/lib/vsprintf.c 2020/09/02 04:43:21 1.1.1.2 @@ -131,13 +131,17 @@ number (char *str, long num, int base, i if (sign) *str++ = sign; if (type & SPECIAL) - if (base == 8) - *str++ = '0'; - else if (base == 16) - { - *str++ = '0'; - *str++ = digits[33]; - } + { + if (base == 8) + { + *str++ = '0'; + } + else if (base == 16) + { + *str++ = '0'; + *str++ = digits[33]; + } + } if (!(type & LEFT)) while (size-- > 0) *str++ = c;