timerfd_create.2: Use 'PRIxN' macros when printing C99 fixed-width integer types

Signed-off-by: Alejandro Colomar <colomar.6.4.3@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Alejandro Colomar 2020-09-10 23:13:24 +02:00 committed by Michael Kerrisk
parent 95cc0897f7
commit 86d90299ae
1 changed files with 2 additions and 3 deletions

View File

@ -624,6 +624,7 @@ a.out 3 1 100
#include <sys/timerfd.h>
#include <time.h>
#include <unistd.h>
#include <inttypes.h> /* Definition of PRIu64 */
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h> /* Definition of uint64_t */
@ -706,9 +707,7 @@ main(int argc, char *argv[])
tot_exp += exp;
print_elapsed_time();
printf("read: %llu; total=%llu\en",
(unsigned long long) exp,
(unsigned long long) tot_exp);
printf("read: %"PRIu64"; total=%"PRIu64"\en", exp, tot_exp);
}
exit(EXIT_SUCCESS);