summaryrefslogtreecommitdiff
path: root/target-mips
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-03-30 18:42:21 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-03-30 18:42:21 +0000
commit36bb244bd30faf7ea931bb0ac5ccd76f74f761e4 (patch)
treed16fd757e3127e3194077b05fc8e1a0606a50789 /target-mips
parent5efbfeddac734680ecb00c4e38eb6c698ad7fa5a (diff)
downloadqemu-36bb244bd30faf7ea931bb0ac5ccd76f74f761e4.tar.gz
Fix typo, suggested by Ben Taylor.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2548 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips')
-rw-r--r--target-mips/cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-mips/cpu.h b/target-mips/cpu.h
index 4fec3cc880..3849e503cd 100644
--- a/target-mips/cpu.h
+++ b/target-mips/cpu.h
@@ -12,7 +12,7 @@
// uint_fast8_t and uint_fast16_t not in <sys/int_types.h>
// XXX: move that elsewhere
-#if defined(HOST_SOLARIS) && SOLARISREV < 10
+#if defined(HOST_SOLARIS) && HOST_SOLARIS < 10
typedef unsigned char uint_fast8_t;
typedef unsigned int uint_fast16_t;
#endif