summaryrefslogtreecommitdiffstats
path: root/core/jni/android_database_SQLiteCompiledSql.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/jni/android_database_SQLiteCompiledSql.cpp')
-rw-r--r--core/jni/android_database_SQLiteCompiledSql.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/jni/android_database_SQLiteCompiledSql.cpp b/core/jni/android_database_SQLiteCompiledSql.cpp
index a916ef5..857267a 100644
--- a/core/jni/android_database_SQLiteCompiledSql.cpp
+++ b/core/jni/android_database_SQLiteCompiledSql.cpp
@@ -104,7 +104,7 @@ int register_android_database_SQLiteCompiledSql(JNIEnv * env)
clazz = env->FindClass("android/database/sqlite/SQLiteCompiledSql");
if (clazz == NULL) {
- LOGE("Can't find android/database/sqlite/SQLiteCompiledSql");
+ ALOGE("Can't find android/database/sqlite/SQLiteCompiledSql");
return -1;
}
@@ -112,7 +112,7 @@ int register_android_database_SQLiteCompiledSql(JNIEnv * env)
gStatementField = env->GetFieldID(clazz, "nStatement", "I");
if (gHandleField == NULL || gStatementField == NULL) {
- LOGE("Error locating fields");
+ ALOGE("Error locating fields");
return -1;
}