diff options
author | Elliott Hughes <enh@google.com> | 2013-03-06 18:01:36 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-03-06 18:01:36 +0000 |
commit | 68ff0f60e84e03864b87bb3e21dff387d952f843 (patch) | |
tree | f61124d69e4333c090b813dd6d8362f7e54ae0c9 /android/sqlite3_android.cpp | |
parent | db9ae4b068589d2157c1c2d4c45c3873d9203ef0 (diff) | |
parent | b4e9e379e360464d3d6bde3084e5b286238a9329 (diff) |
am b4e9e379: Merge "fix build problem, when #define ENABLE_ANDROID_LOG 1"
* commit 'b4e9e379e360464d3d6bde3084e5b286238a9329':
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 de8bb22..b836952 100644 --- a/android/sqlite3_android.cpp +++ b/android/sqlite3_android.cpp @@ -145,7 +145,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; |