From ae6d81da2093b139ece952913f8f00dcc26ce7b9 Mon Sep 17 00:00:00 2001 From: Eleni Maria Stea Date: Mon, 9 May 2022 15:00:54 +0300 Subject: [PATCH] tests/modeprint: fix argument type Replaced the type PRId64 with PRIu64 in a printf as the argument was unsigned to fix the related compiler warning. Signed-off-by: Eleni Maria Stea Reviewed-by: Simon Ser --- tests/modeprint/modeprint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modeprint/modeprint.c b/tests/modeprint/modeprint.c index 880269b..9372ad9 100644 --- a/tests/modeprint/modeprint.c +++ b/tests/modeprint/modeprint.c @@ -113,7 +113,7 @@ static int printProperty(int fd, drmModeResPtr res, drmModePropertyPtr props, ui } else { for (j = 0; j < props->count_enums; j++) { - printf("\t\t%" PRId64" = %s\n", (uint64_t)props->enums[j].value, props->enums[j].name); + printf("\t\t%" PRIu64" = %s\n", (uint64_t)props->enums[j].value, props->enums[j].name); if (props->enums[j].value == value) name = props->enums[j].name; } -- 2.7.4