From 223673da5782557b8dcd3871325670331bf47a7c Mon Sep 17 00:00:00 2001 From: George Kalampokis Date: Sun, 8 Jul 2018 19:50:13 +0300 Subject: [PATCH] Show properly cpu on 64-bit linux --- neo/idlib/sys/sys_defines.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/idlib/sys/sys_defines.h b/neo/idlib/sys/sys_defines.h index acfbc2ad..8196dc4b 100644 --- a/neo/idlib/sys/sys_defines.h +++ b/neo/idlib/sys/sys_defines.h @@ -108,7 +108,7 @@ If you have questions concerning this license or the applicable additional terms #if defined(__i386__) #define CPUSTRING "x86" #elif defined(__x86_64__) -#define CPUSTRING "x86_86" +#define CPUSTRING "x86_64" #else #error unknown CPU #endif