From ad1bfc57b4b0ad35ff02a5811fb520c100808cce Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 9 Mar 2021 16:19:27 +0100 Subject: Fixed typo in an error message --- src/elfs/elfparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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]); } -- cgit 1.4.1