From: Janis Streib Date: Sun, 6 Jul 2014 11:01:12 +0000 (+0200) Subject: make method static to avoid export X-Git-Url: https://code.wpia.club/?p=gigi.git;a=commitdiff_plain;h=67d58245002bc9163fb0430dcd3f2f39217c1ea1;ds=sidebyside make method static to avoid export --- diff --git a/natives/org_cacert_gigi_natives_SetUID.c b/natives/org_cacert_gigi_natives_SetUID.c index f0ae7cb1..96bf4c21 100644 --- a/natives/org_cacert_gigi_natives_SetUID.c +++ b/natives/org_cacert_gigi_natives_SetUID.c @@ -8,7 +8,7 @@ extern "C" { #endif -jobject getStatus(JNIEnv *env, int successCode, const char * message) { +static jobject getStatus(JNIEnv *env, int successCode, const char * message) { jstring message_str = (*env)->NewStringUTF(env, message); jboolean success = successCode;