From 165c687ec0f21b4ca003384a7528305e38d2f4c6 Mon Sep 17 00:00:00 2001 From: Hyejin Kim Date: Thu, 28 Feb 2013 16:21:20 +0900 Subject: fix build problem, when #define ENABLE_ANDROID_LOG 1 Change-Id: I514750dd33ff5bd433d4ee167a2401d829d2fbe9 --- android/sqlite3_android.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'android/sqlite3_android.cpp') diff --git a/android/sqlite3_android.cpp b/android/sqlite3_android.cpp index 5daf15e..1d51b60 100644 --- a/android/sqlite3_android.cpp +++ b/android/sqlite3_android.cpp @@ -193,7 +193,7 @@ static void android_log(sqlite3_context * context, int argc, sqlite3_value ** ar if (msg == NULL) { msg = ""; } - LOG(LOG_INFO, tag, msg); + ALOG(LOG_INFO, tag, "%s", msg); sqlite3_result_int(context, 1); return; -- cgit v1.2.3