diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-02 15:46:11 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-02 15:46:11 +0100 |
| commit | da3311fe108982773cdf8ea36924da4e90d60cc4 (patch) | |
| tree | ef86c1eb6d4d96f9b92a2b2227e5bdeded5a36a6 /src/elfs/elfload_dump.c | |
| parent | e8799c69a8d85ef6709a39ee997768305b9f2b08 (diff) | |
| download | box64-da3311fe108982773cdf8ea36924da4e90d60cc4.tar.gz box64-da3311fe108982773cdf8ea36924da4e90d60cc4.zip | |
Another batch of printf/scanf format errors
Diffstat (limited to 'src/elfs/elfload_dump.c')
| -rwxr-xr-x | src/elfs/elfload_dump.c | 2 |
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; } |