From da3311fe108982773cdf8ea36924da4e90d60cc4 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 2 Mar 2021 15:46:11 +0100 Subject: Another batch of printf/scanf format errors --- src/elfs/elfload_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/elfs/elfload_dump.c') diff --git a/src/elfs/elfload_dump.c b/src/elfs/elfload_dump.c index 50cc7639..4ddbfbf8 100755 --- a/src/elfs/elfload_dump.c +++ b/src/elfs/elfload_dump.c @@ -55,7 +55,7 @@ const char* DumpSection(Elf64_Shdr *s, char* SST) { #endif #undef GO default: - sprintf(buff, "0x%lX unknown type", s->sh_type); + sprintf(buff, "0x%X unknown type", s->sh_type); } return buff; } -- cgit 1.4.1