Changeset 81887b7 in mainline for src/debug/print.c
- Timestamp:
- 2005-08-30T08:59:22Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 00e00fa
- Parents:
- 1fbbcd6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/debug/print.c
r1fbbcd6 r81887b7 67 67 * 68 68 */ 69 void print_fixed_hex(const __ nativenum, const int width)69 void print_fixed_hex(const __u64 num, const int width) 70 70 { 71 71 int i; … … 187 187 print_str("0x"); 188 188 case 'q': 189 print_fixed_hex(va_arg(ap, __ native), INT64);189 print_fixed_hex(va_arg(ap, __u64), INT64); 190 190 goto loop; 191 191
Note:
See TracChangeset
for help on using the changeset viewer.