Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <colin.i.king@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://lore.kernel.org/bpf/20231219152307.368921-1-colin.i.king@gmail.com

authored by

Colin Ian King and committed by
Daniel Borkmann
32f24938 441c725e

+2 -2
+2 -2
samples/bpf/cpustat_user.c
··· 66 66 67 67 printf("CPU-%-6d ", j); 68 68 for (i = 0; i < MAX_CSTATE_ENTRIES; i++) 69 - printf("%-11ld ", data->cstate[i] / 1000000); 69 + printf("%-11lu ", data->cstate[i] / 1000000); 70 70 71 71 for (i = 0; i < MAX_PSTATE_ENTRIES; i++) 72 - printf("%-11ld ", data->pstate[i] / 1000000); 72 + printf("%-11lu ", data->pstate[i] / 1000000); 73 73 74 74 printf("\n"); 75 75 }