Commit 85588ea040da931db76c0ee34e47c06c2d72e226

Philipp Wiesemann 2016-09-21T23:06:26

Android: Fixed two warnings about unused variables.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/src/core/android/SDL_android.c b/src/core/android/SDL_android.c
index fcb0bc7..b93b162 100644
--- a/src/core/android/SDL_android.c
+++ b/src/core/android/SDL_android.c
@@ -718,10 +718,8 @@ void Android_JNI_FlushCapturedAudio(void)
     }
     #else
     if (captureBuffer16Bit) {
-        const jint len = (*env)->GetArrayLength(env, (jshortArray)captureBuffer);
         (*env)->CallStaticIntMethod(env, mActivityClass, midCaptureReadShortBuffer, (jshortArray)captureBuffer, JNI_FALSE);
     } else {
-        const jint len = (*env)->GetArrayLength(env, (jbyteArray)captureBuffer);
         (*env)->CallStaticIntMethod(env, mActivityClass, midCaptureReadByteBuffer, (jbyteArray)captureBuffer, JNI_FALSE);
     }
     #endif