Fixed a bug in src/common/header/common.h with respect to ia64

I had written #elif define __ia64__ instead of #elif defined __ia64__

This has been fixed.
This commit is contained in:
Joshua Scoggins 2012-11-30 20:34:35 -08:00
parent a578fff56a
commit 7116d7e90a
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@
#define CPUSTRING "amd64" #define CPUSTRING "amd64"
#elif defined __sparc__ #elif defined __sparc__
#define CPUSTRING "sparc64" #define CPUSTRING "sparc64"
#elif define __ia64__ #elif defined __ia64__
#define CPUSTRING "ia64" #define CPUSTRING "ia64"
#else #else
#define CPUSTRING "Unknown" #define CPUSTRING "Unknown"