You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by dl...@apache.org on 2007/08/12 22:34:51 UTC

svn commit: r565139 - /harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/bytegames.c

Author: dlydick
Date: Sun Aug 12 13:34:50 2007
New Revision: 565139

URL: http://svn.apache.org/viewvc?view=rev&rev=565139
Log:
Corrected typo in endianness calculation.

Modified:
    harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/bytegames.c

Modified: harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/bytegames.c
URL: http://svn.apache.org/viewvc/harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/bytegames.c?view=diff&rev=565139&r1=565138&r2=565139
==============================================================================
--- harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/bytegames.c (original)
+++ harmony/enhanced/sandbox/bootjvm/bootJVM/jvm/src/bytegames.c Sun Aug 12 13:34:50 2007
@@ -287,7 +287,7 @@
     wholeval._byteval.a = *ptr1++;
     wholeval._byteval.b = *ptr1;
 
-#ifdef ARCH_BIT_ENDIAN
+#ifdef ARCH_BIG_ENDIAN
     wholeval._usval = bytegames_swap2(wholeval._usval);
 #endif