From: Colin Ian King Date: Tue, 19 Dec 2023 15:23:07 +0000 (+0000) Subject: samples/bpf: Use %lu format specifier for unsigned long values X-Git-Tag: v6.8-rc1~131^2~75^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=32f24938a1fce95fce314c1fa9a72af74588ea6c;p=thirdparty%2Fkernel%2Flinux.git samples/bpf: Use %lu format specifier for unsigned long values Currently %ld format specifiers are being used for unsigned long values. Fix this by using %lu instead. Cleans up cppcheck warnings: warning: %ld in format string (no. 1) requires 'long' but the argument type is 'unsigned long'. [invalidPrintfArgType_sint] Signed-off-by: Colin Ian King Signed-off-by: Daniel Borkmann Reviewed-by: Randy Dunlap Link: https://lore.kernel.org/bpf/20231219152307.368921-1-colin.i.king@gmail.com --- diff --git a/samples/bpf/cpustat_user.c b/samples/bpf/cpustat_user.c index ab90bb08a2b4f..356f756cba0d7 100644 --- a/samples/bpf/cpustat_user.c +++ b/samples/bpf/cpustat_user.c @@ -66,10 +66,10 @@ static void cpu_stat_print(void) printf("CPU-%-6d ", j); for (i = 0; i < MAX_CSTATE_ENTRIES; i++) - printf("%-11ld ", data->cstate[i] / 1000000); + printf("%-11lu ", data->cstate[i] / 1000000); for (i = 0; i < MAX_PSTATE_ENTRIES; i++) - printf("%-11ld ", data->pstate[i] / 1000000); + printf("%-11lu ", data->pstate[i] / 1000000); printf("\n"); }