From 807129e269c9ce8db6b6044e7a41857b54b26634 Mon Sep 17 00:00:00 2001 From: Guillaume Beraudo Date: Wed, 4 Sep 2013 11:24:48 +0200 Subject: [PATCH] Fix defCallMethod warning --- tools/my_jni.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/my_jni.h b/tools/my_jni.h index ce56829ec..b02882ba3 100644 --- a/tools/my_jni.h +++ b/tools/my_jni.h @@ -35,7 +35,7 @@ static ReturnType call##Type##Method(JNIEnv *env, jobject obj, const char *class } \ jmethodID my_method = env->GetMethodID(my_class, methodName, methodSignature); \ if(my_method == 0) { \ - ms_error("Can't get %s %s %s method", className, methodSignature); \ + ms_error("Can't get %s %s %s method", className, methodName, methodSignature); \ return NULL; \ } \ va_list vl; \