Commit 4b153542 authored by Luo Yifan's avatar Luo Yifan Committed by Andrii Nakryiko
Browse files

tools/bpf: Fix the wrong format specifier in bpf_jit_disasm



There is a static checker warning that the %d in format string is
mismatched with the corresponding argument type, which could result in
incorrect printed data. This patch fixes it.

Signed-off-by: default avatarLuo Yifan <luoyifan@cmss.chinamobile.com>
Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
Link: https://lore.kernel.org/bpf/20241111021004.272293-1-luoyifan@cmss.chinamobile.com
parent 09048d22
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -210,7 +210,7 @@ static uint8_t *get_last_jit_image(char *haystack, size_t hlen,
		return NULL;
	}
	if (proglen > 1000000) {
		printf("proglen of %d too big, stopping\n", proglen);
		printf("proglen of %u too big, stopping\n", proglen);
		return NULL;
	}