diff options
author | Hyejin Kim <hyejin.kim@lge.com> | 2013-02-28 16:21:20 +0900 |
---|---|---|
committer | Hyejin Kim <hyejin.kim@lge.com> | 2013-03-06 16:29:02 +0900 |
commit | 165c687ec0f21b4ca003384a7528305e38d2f4c6 (patch) | |
tree | ff40d7b64918017c2509040a71d2aa2ee7604ac9 | |
parent | 6bbf67c11ea1b7e8e9769113072c167e822fe73f (diff) |
fix build problem, when #define ENABLE_ANDROID_LOG 1
Change-Id: I514750dd33ff5bd433d4ee167a2401d829d2fbe9
-rw-r--r-- | android/sqlite3_android.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |