From 9c63e92baaea8fd35d9892e197a97d3bb39079f4 Mon Sep 17 00:00:00 2001 From: Lucas Stach Date: Mon, 21 Apr 2014 22:15:22 +0200 Subject: treewide: fix signedness mixups in printf format specifiers This most likely doesn't fix any real bugs, but it's the right thing to do and reduces the noise level with static checkers. Signed-off-by: Lucas Stach Signed-off-by: Sascha Hauer --- commands/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands/time.c') diff --git a/commands/time.c b/commands/time.c index 2cc3292d7b..ffd3062339 100644 --- a/commands/time.c +++ b/commands/time.c @@ -37,7 +37,7 @@ static int do_time(int argc, char *argv[]) diff = diff64; - printf("time: %ldms\n", diff); + printf("time: %lums\n", diff); free(buf); -- cgit v1.2.3