diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-03-09 16:19:27 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-03-09 16:19:27 +0100 |
| commit | ad1bfc57b4b0ad35ff02a5811fb520c100808cce (patch) | |
| tree | 15fb9d0aec4bad5c669c0a581f3f851a8292f472 /src | |
| parent | b971a37ee30012a389c9d4689749e142b42afec9 (diff) | |
| download | box64-ad1bfc57b4b0ad35ff02a5811fb520c100808cce.tar.gz box64-ad1bfc57b4b0ad35ff02a5811fb520c100808cce.zip | |
Fixed typo in an error message
Diffstat (limited to 'src')
| -rwxr-xr-x | src/elfs/elfparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elfs/elfparser.c b/src/elfs/elfparser.c index 2eaac96f..b130a919 100755 --- a/src/elfs/elfparser.c +++ b/src/elfs/elfparser.c @@ -72,7 +72,7 @@ elfheader_t* ParseElfHeader(FILE* f, const char* name, int exec) } if(header.e_ident[EI_CLASS]!=ELFCLASS64) { if(header.e_ident[EI_CLASS]==ELFCLASS32) { - printf_log(LOG_INFO, "This is a 64bits ELF! box64 can only run 64bits ELF!\n"); + printf_log(LOG_INFO, "This is a 32bits ELF! box64 can only run 64bits ELF!\n"); } else { printf_log(LOG_INFO, "Not a 64bits ELF (%d)\n", header.e_ident[EI_CLASS]); } |