Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 3921 → Rev 4034

/trunk/boot/generic/printf.c
84,7 → 84,9
static void print_number(const unative_t num, const unsigned int base)
{
int val = num;
char d[sizeof(unative_t) * 8 + 1]; /* this is good enough even for base == 2 */
 
/* This is enough even for base 2. */
char d[sizeof(unative_t) * 8 + 1];
int i = sizeof(unative_t) * 8 - 1;
do {
188,7 → 190,8
case 'P':
puts("0x");
case 'p':
print_fixed_hex(va_arg(ap, unative_t), sizeof(unative_t));
print_fixed_hex(va_arg(ap, unative_t),
sizeof(unative_t));
goto loop;
case 'Q':
238,7 → 241,6
default:
write(&c, 1);
}
loop:
;
}