summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-12-02 11:42:15 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-12-02 11:42:15 +0000
commitb50e48bc1606a0fe1a097fb17ce9936aec91871d (patch)
treef1d58d9b327d62f84d2a50aa03b8139a703bc3e4 /cpukit
parentWhitespace removal. (diff)
downloadrtems-b50e48bc1606a0fe1a097fb17ce9936aec91871d.tar.bz2
2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* shttpd/def.h: Use __m32c__ for m32c.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/shttpd/defs.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 9664097878..554f09d8e7 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
+ * shttpd/def.h: Use __m32c__ for m32c.
+
+2009-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>
+
* shttpd/def.h: Shrink default URI_MAX to 32767.
Add special cases for sizeof(size_t) < 2.
diff --git a/cpukit/shttpd/defs.h b/cpukit/shttpd/defs.h
index 6956ebe113..593dd8bbd0 100644
--- a/cpukit/shttpd/defs.h
+++ b/cpukit/shttpd/defs.h
@@ -40,7 +40,7 @@
# if defined(__AVR__)
/* FIXME: 1500 is sufficient to avoid compilation breakdown. */
# define URI_MAX (32767-1500)
-# elif defined(__M32C__)
+# elif defined(__m32c__)
/* FIXME: 1500 is sufficient to avoid compilation breakdown. */
# define URI_MAX (32767-1500)
# else