Moved prototype for static function out of header file to prevent warnings.
1.1 --- a/src/core/android/SDL_android.cpp Thu May 30 23:08:35 2013 +0200
1.2 +++ b/src/core/android/SDL_android.cpp Thu May 30 23:25:03 2013 +0200
1.3 @@ -50,6 +50,8 @@
1.4
1.5 /* Implemented in audio/android/SDL_androidaudio.c */
1.6 extern void Android_RunAudioThread();
1.7 +
1.8 +static void Android_JNI_ThreadDestroyed(void*);
1.9 } // C
1.10
1.11 /*******************************************************************************
2.1 --- a/src/core/android/SDL_android.h Thu May 30 23:08:35 2013 +0200
2.2 +++ b/src/core/android/SDL_android.h Thu May 30 23:25:03 2013 +0200
2.3 @@ -62,7 +62,6 @@
2.4
2.5 /* Threads */
2.6 #include <jni.h>
2.7 -static void Android_JNI_ThreadDestroyed(void*);
2.8 JNIEnv *Android_JNI_GetEnv(void);
2.9 int Android_JNI_SetupThread(void);
2.10