~ chicken-core (chicken-5) e818bd9fa4bfd5445000232da5313215dc139771


commit e818bd9fa4bfd5445000232da5313215dc139771
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Fri Feb 11 03:49:07 2011 -0500
Commit:     felix <felix@call-with-current-continuation.org>
CommitDate: Fri Feb 11 03:49:07 2011 -0500

    fixed stupid error in chicken.h (reported by ckeen)

diff --git a/chicken.h b/chicken.h
index 00f5b6a9..040115ee 100644
--- a/chicken.h
+++ b/chicken.h
@@ -156,7 +156,7 @@ void *alloca ();
 # define C_BIG_ENDIAN
 #elif defined(__BIG_ENDIAN__)
 # define C_BIG_ENDIAN
-#if defined(__MIPSEL__) || defined(__MIPSEL)
+#elif defined(__MIPSEL__) || defined(__MIPSEL)
 # define C_LITTLE_ENDIAN
 #elif defined(__sparc__) || defined(__POWERPC__) || defined(__MC68K__) || defined(__mips__)
 # define C_BIG_ENDIAN
Trap