Author: mturk
Date: Sat Apr 25 14:05:04 2009
New Revision: 768533

URL: http://svn.apache.org/viewvc?rev=768533&view=rev
Log:
Fix native prototypes

Modified:
    
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer32.java

Modified: 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer32.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer32.java?rev=768533&r1=768532&r2=768533&view=diff
==============================================================================
--- 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer32.java
 (original)
+++ 
commons/sandbox/runtime/trunk/src/main/java/org/apache/commons/runtime/Pointer32.java
 Sat Apr 25 14:05:04 2009
@@ -88,9 +88,9 @@
         poke0(POINTER + index, value);
     }
 
-    private static native void copy0(int src, int dst, long length);
+    private static native void copy0(int src, int dst, int length);
     private static native void copy1(int addr, byte[] d, int dstPos, int len);
-    private static native void move0(int src, int dst, long length);
+    private static native void move0(int src, int dst, int length);
     private static native void move1(int addr, byte[] d, int srcPos, int len);
 
     public void copy(long srcPos, Pointer dst,


Reply via email to