fix call of android_log_print to make sure it plays well with the remaining code.

Signed-off-by: Vítor Santos Costa <vsc@dcc.fc.up.pt>
This commit is contained in:
Vítor Santos Costa 2014-06-16 14:43:18 +01:00
parent 8da6fb70e1
commit 0b569a374e

View File

@ -465,7 +465,9 @@ extern int Yap_output_msg;
#include <android/asset_manager_jni.h> #include <android/asset_manager_jni.h>
#include <android/log.h> #include <android/log.h>
#else #else
#define __android_log_print(i,loc,msg,...) static inline char * __android_log_print(int i,const char *loc,const char *msg,...) {
return NULL;
}
#define ANDROID_LOG_INFO 0 #define ANDROID_LOG_INFO 0
#define ANDROID_LOG_ERROR 0 #define ANDROID_LOG_ERROR 0
#define ANDROID_LOG_DEBUG 0 #define ANDROID_LOG_DEBUG 0