[svn:parrot] r43470 - trunk/config/auto/byteorder

mikehh at svn.parrot.org mikehh at svn.parrot.org
Sat Jan 16 00:22:38 UTC 2010


Author: mikehh
Date: Sat Jan 16 00:22:36 2010
New Revision: 43470
URL: https://trac.parrot.org/parrot/changeset/43470

Log:
fix codetest failure - Correctly indented preprocessor directives

Modified:
   trunk/config/auto/byteorder/test_c.in

Modified: trunk/config/auto/byteorder/test_c.in
==============================================================================
--- trunk/config/auto/byteorder/test_c.in	Fri Jan 15 16:06:55 2010	(r43469)
+++ trunk/config/auto/byteorder/test_c.in	Sat Jan 16 00:22:36 2010	(r43470)
@@ -16,11 +16,11 @@
         @iv@ w;
     } w;
 #if defined(__ARM__) || defined(__arm__)
-#   if defined(__ARMEB__)
+#  if defined(__ARMEB__)
     printf("87654321\n");
-#   else
+#  else
     printf("1234\n");
-#   endif
+#  endif
     return 0;
 #endif
     if (sizeof (w) == 4) {


More information about the parrot-commits mailing list