summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-03-06 18:01:36 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2013-03-06 18:01:36 +0000
commit68ff0f60e84e03864b87bb3e21dff387d952f843 (patch)
treef61124d69e4333c090b813dd6d8362f7e54ae0c9 /android
parentdb9ae4b068589d2157c1c2d4c45c3873d9203ef0 (diff)
parentb4e9e379e360464d3d6bde3084e5b286238a9329 (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')
-rw-r--r--android/sqlite3_android.cpp2
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;