diff options
author | Jonathan Kollasch <jakllsch@kollasch.net> | 2010-10-24 14:18:55 +0000 |
---|---|---|
committer | Jonathan A. Kollasch <jakllsch@kollasch.net> | 2010-10-24 14:18:55 +0000 |
commit | 760498f8ea96096314900861d492f2125121a112 (patch) | |
tree | ec7804abd41d76eb0b704fc554f12fe5b5c954c7 /util | |
parent | 51ac8382dc99be21760bb40a641325b276324a83 (diff) |
Fix superiotool build on non-NetBSD x86_64.
Signed-off-by: Jonathan Kollasch <jakllsch@kollasch.net>
Acked-by: Jonathan Kollasch <jakllsch@kollasch.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5983 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rw-r--r-- | util/superiotool/superiotool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/superiotool/superiotool.h b/util/superiotool/superiotool.h index ba51345560..479dba0d7a 100644 --- a/util/superiotool/superiotool.h +++ b/util/superiotool/superiotool.h @@ -59,7 +59,7 @@ #define INL inl #endif -#if defined(__NetBSD__) && defined(__i386__) || defined(__x86_64__) +#if defined(__NetBSD__) && (defined(__i386__) || defined(__x86_64__)) #include <sys/types.h> #include <machine/sysarch.h> #if defined(__i386__) |