diff options
author | Elliott Hughes <enh@google.com> | 2013-03-06 17:35:08 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-03-06 17:35:08 +0000 |
commit | b4e9e379e360464d3d6bde3084e5b286238a9329 (patch) | |
tree | ff40d7b64918017c2509040a71d2aa2ee7604ac9 /android/sqlite3_android.cpp | |
parent | 6bbf67c11ea1b7e8e9769113072c167e822fe73f (diff) | |
parent | 165c687ec0f21b4ca003384a7528305e38d2f4c6 (diff) |
Merge "fix build problem, when #define ENABLE_ANDROID_LOG 1"
Diffstat (limited to 'android/sqlite3_android.cpp')
-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; |