summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2004-04-09 13:08:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2004-04-09 13:08:28 +0000
commitb3786fcf4e70541e089d17ba85be329a23ca66ba (patch)
treee8e14ad8869729ba48031e1dd915b36ebc88a830 /cpukit
parent2004-04-09 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-b3786fcf4e70541e089d17ba85be329a23ca66ba.tar.bz2
2004-04-09 Joel Sherrill <joel@OARcorp.com>
* rtems/score/cpu.h: Fix typo.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/score/cpu/arm/ChangeLog4
-rw-r--r--cpukit/score/cpu/arm/rtems/score/cpu.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/score/cpu/arm/ChangeLog b/cpukit/score/cpu/arm/ChangeLog
index 62212bc773..5d5c7114e4 100644
--- a/cpukit/score/cpu/arm/ChangeLog
+++ b/cpukit/score/cpu/arm/ChangeLog
@@ -1,3 +1,7 @@
+2004-04-09 Joel Sherrill <joel@OARcorp.com>
+
+ * rtems/score/cpu.h: Fix typo.
+
2004-04-06 Ralf Corsepius <ralf_corsepius@rtems.org>
* configure.ac: Remove (Merged into $(top_srcdir)/configure.ac).
diff --git a/cpukit/score/cpu/arm/rtems/score/cpu.h b/cpukit/score/cpu/arm/rtems/score/cpu.h
index 4c69a35561..160084ed8f 100644
--- a/cpukit/score/cpu/arm/rtems/score/cpu.h
+++ b/cpukit/score/cpu/arm/rtems/score/cpu.h
@@ -275,7 +275,7 @@ extern "C" {
#if defined(__ARMEL__)
#define CPU_BIG_ENDIAN FALSE
#define CPU_LITTLE_ENDIAN TRUE
-#elif define(__ARMEB__)
+#elif defined(__ARMEB__)
#define CPU_BIG_ENDIAN TRUE
#define CPU_LITTLE_ENDIAN FALSE
#else