Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 180 → Rev 181

/SPARTAN/trunk/src/debug/print.c
66,7 → 66,7
* @param width Count of digits to print.
*
*/
void print_fixed_hex(const __native num, const int width)
void print_fixed_hex(const __u64 num, const int width)
{
int i;
186,7 → 186,7
case 'Q':
print_str("0x");
case 'q':
print_fixed_hex(va_arg(ap, __native), INT64);
print_fixed_hex(va_arg(ap, __u64), INT64);
goto loop;
 
case 'L':