diff options
author | dzwdz | 2022-08-03 00:23:50 +0200 |
---|---|---|
committer | dzwdz | 2022-08-03 00:23:50 +0200 |
commit | a2a1e4bbfcda8c1314b592c8c940e96e95cb68d4 (patch) | |
tree | 200f63d71eb07b9f9c53ab4f14b58b7b15b2f4bf /src/user/app/iostress | |
parent | b4447c1c7bc8639774df6bd74428977908bff61e (diff) |
shared: clean up printf, %u support (amongst other things)
Diffstat (limited to 'src/user/app/iostress')
-rw-r--r-- | src/user/app/iostress/iostress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/app/iostress/iostress.c b/src/user/app/iostress/iostress.c index 843a19a..27e9d33 100644 --- a/src/user/app/iostress/iostress.c +++ b/src/user/app/iostress/iostress.c @@ -18,7 +18,7 @@ int main(void) { } for (int i = 0; i < NUM_RUNS; i++) { - printf("run %x: %x\n", i, results[i] / 3000); + printf("run %u: %u\n", i, results[i] / 3000); } return 0; |