about summary refs log tree commit diff stats
path: root/src/elfs/elfload_dump.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-02 15:46:11 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-02 15:46:11 +0100
commitda3311fe108982773cdf8ea36924da4e90d60cc4 (patch)
treeef86c1eb6d4d96f9b92a2b2227e5bdeded5a36a6 /src/elfs/elfload_dump.c
parente8799c69a8d85ef6709a39ee997768305b9f2b08 (diff)
downloadbox64-da3311fe108982773cdf8ea36924da4e90d60cc4.tar.gz
box64-da3311fe108982773cdf8ea36924da4e90d60cc4.zip
Another batch of printf/scanf format errors
Diffstat (limited to 'src/elfs/elfload_dump.c')
-rwxr-xr-xsrc/elfs/elfload_dump.c2
1 files changed, 1 insertions, 1 deletions
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;
 }