You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/04/18 08:18:25 UTC

svn commit: r766238 - /commons/sandbox/runtime/trunk/src/main/native/include/acr_private.h

Author: mturk
Date: Sat Apr 18 06:18:24 2009
New Revision: 766238

URL: http://svn.apache.org/viewvc?rev=766238&view=rev
Log:
Oops. Fix typo

Modified:
    commons/sandbox/runtime/trunk/src/main/native/include/acr_private.h

Modified: commons/sandbox/runtime/trunk/src/main/native/include/acr_private.h
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/include/acr_private.h?rev=766238&r1=766237&r2=766238&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/include/acr_private.h (original)
+++ commons/sandbox/runtime/trunk/src/main/native/include/acr_private.h Sat Apr 18 06:18:24 2009
@@ -239,7 +239,7 @@
 typedef jlong                   jniptr;
 #define P2N(P)                  ((jlong)LLT(P))
 #define N2P(P, T)               ((T)LLT((jlong)P))
-#define I2P(P, T)               ((T)LLT((jlong)P) & 0x00000000FFFFFFFFL)
+#define I2P(P, T)               ((T)LLT((jlong)P & 0x00000000FFFFFFFFL))
 #else
 typedef jint                    jniptr;
 #define P2N(P)                  ((jint)LLT(P))