From fbd150d909cecfbcfee7291be47c0daa3b9bab05 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Fri, 11 Sep 2020 11:28:59 +0200 Subject: [PATCH] timerfd_create.2: ffix Signed-off-by: Michael Kerrisk --- man2/timerfd_create.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man2/timerfd_create.2 b/man2/timerfd_create.2 index 90e35d9b5..80f280ce1 100644 --- a/man2/timerfd_create.2 +++ b/man2/timerfd_create.2 @@ -707,7 +707,7 @@ main(int argc, char *argv[]) tot_exp += exp; print_elapsed_time(); - printf("read: %"PRIu64"; total=%"PRIu64"\en", exp, tot_exp); + printf("read: %" PRIu64 "; total=%" PRIu64 "\en", exp, tot_exp); } exit(EXIT_SUCCESS);