< prev index next >

src/hotspot/share/prims/jvmtiImpl.cpp

Print this page

        

@@ -521,11 +521,11 @@
 //
 // class VM_GetOrSetLocal
 //
 
 // Constructor for non-object getter
-VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type)
+VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, jint index, BasicType type)
   : _thread(thread)
   , _calling_thread(NULL)
   , _depth(depth)
   , _index(index)
   , _type(type)

@@ -534,11 +534,11 @@
   , _result(JVMTI_ERROR_NONE)
 {
 }
 
 // Constructor for object or non-object setter
-VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, int index, BasicType type, jvalue value)
+VM_GetOrSetLocal::VM_GetOrSetLocal(JavaThread* thread, jint depth, jint index, BasicType type, jvalue value)
   : _thread(thread)
   , _calling_thread(NULL)
   , _depth(depth)
   , _index(index)
   , _type(type)
< prev index next >