Index: E:/projects/clear/eclipse/workspace/native-src/shared/archive/inflater.h =================================================================== --- E:/projects/clear/eclipse/workspace/native-src/shared/archive/inflater.h (revision 383480) +++ E:/projects/clear/eclipse/workspace/native-src/shared/archive/inflater.h (working copy) @@ -47,13 +47,13 @@ void JNICALL Java_java_util_zip_Inflater_resetImpl (JNIEnv * env, jobject recv, jlong handle); -int JNICALL Java_java_util_zip_Inflater_getTotalOutImpl (JNIEnv * env, +jlong JNICALL Java_java_util_zip_Inflater_getTotalOutImpl (JNIEnv * env, jobject recv, jlong handle); jlong JNICALL Java_java_util_zip_Inflater_createStream (JNIEnv * env, jobject recv, jboolean noHeader); -int JNICALL Java_java_util_zip_Inflater_getTotalInImpl (JNIEnv * env, +jlong JNICALL Java_java_util_zip_Inflater_getTotalInImpl (JNIEnv * env, jobject recv, jlong handle); jint JNICALL Java_java_util_zip_Inflater_getAdlerImpl (JNIEnv * env, Index: E:/projects/clear/eclipse/workspace/native-src/win.IA32/archive/inflater.c =================================================================== --- E:/projects/clear/eclipse/workspace/native-src/win.IA32/archive/inflater.c (revision 383480) +++ E:/projects/clear/eclipse/workspace/native-src/win.IA32/archive/inflater.c (working copy) @@ -245,7 +245,7 @@ (*env)->ThrowNew(env, exceptionClass, message); } -int JNICALL +jlong JNICALL Java_java_util_zip_Inflater_getTotalOutImpl (JNIEnv * env, jobject recv, jlong handle) { @@ -255,7 +255,7 @@ return stream->stream->total_out; } -int JNICALL +jlong JNICALL Java_java_util_zip_Inflater_getTotalInImpl (JNIEnv * env, jobject recv, jlong handle) { Index: E:/projects/clear/eclipse/workspace/native-src/linux.IA32/archive/inflater.c =================================================================== --- E:/projects/clear/eclipse/workspace/native-src/linux.IA32/archive/inflater.c (revision 383480) +++ E:/projects/clear/eclipse/workspace/native-src/linux.IA32/archive/inflater.c (working copy) @@ -246,7 +246,7 @@ (*env)->ThrowNew(env, exceptionClass, message); } -int JNICALL +jlong JNICALL Java_java_util_zip_Inflater_getTotalOutImpl (JNIEnv * env, jobject recv, jlong handle) { @@ -257,7 +257,7 @@ } -int JNICALL +jlong JNICALL Java_java_util_zip_Inflater_getTotalInImpl (JNIEnv * env, jobject recv, jlong handle) {