From a2a1e4bbfcda8c1314b592c8c940e96e95cb68d4 Mon Sep 17 00:00:00 2001 From: dzwdz Date: Wed, 3 Aug 2022 00:23:50 +0200 Subject: shared: clean up printf, %u support (amongst other things) --- src/user/app/iostress/iostress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/user/app/iostress/iostress.c') 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; -- cgit v1.2.3