diff options
-rw-r--r-- | WebKit/android/jni/WebViewCore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/jni/WebViewCore.cpp b/WebKit/android/jni/WebViewCore.cpp index 9f0d260..68b1e01 100644 --- a/WebKit/android/jni/WebViewCore.cpp +++ b/WebKit/android/jni/WebViewCore.cpp @@ -3553,7 +3553,7 @@ static jboolean HandleTouchEvent(JNIEnv *env, jobject obj, jint action, jint* ptrXArray = env->GetIntArrayElements(xArray, 0); jint* ptrYArray = env->GetIntArrayElements(yArray, 0); Vector<IntPoint> points(count); - for (unsigned c = 0; c < count; c++) { + for (int c = 0; c < count; c++) { points[c].setX(ptrXArray[c]); points[c].setY(ptrYArray[c]); } |