From 1e7a069684c79d0100dd35592105f462a72fb8bd Mon Sep 17 00:00:00 2001 From: Steve Block Date: Tue, 5 Oct 2010 13:05:26 +0100 Subject: Fix a compiler warning Change-Id: Iccf9b5bf8f39491b737e6d7e4e82237a4874c6d7 --- WebKit/android/jni/WebViewCore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'WebKit/android/jni/WebViewCore.cpp') 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 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]); } -- cgit v1.1