diff options
author | Sylvain Fonteneau <sylvain.fonteneau@trusted-logic.com> | 2011-01-11 08:27:37 +0100 |
---|---|---|
committer | Nick Pelly <npelly@google.com> | 2011-01-20 16:35:35 -0800 |
commit | 2692a3cabf0344ef3121cec3c7f87bfc987e2d70 (patch) | |
tree | c8e7d1d4852687bb435563d05c4d016bf6ec8ae2 /jni/com_android_nfc.cpp | |
parent | 1a9eca5f84036d7dd3e28000290caa2f641856de (diff) | |
download | packages_apps_nfc-2692a3cabf0344ef3121cec3c7f87bfc987e2d70.zip packages_apps_nfc-2692a3cabf0344ef3121cec3c7f87bfc987e2d70.tar.gz packages_apps_nfc-2692a3cabf0344ef3121cec3c7f87bfc987e2d70.tar.bz2 |
Fixed some typo in JNI traces.
Change-Id: I0eaf93fb62fd28e417b8f65c3d4da69060cd4d90
Diffstat (limited to 'jni/com_android_nfc.cpp')
-rw-r--r-- | jni/com_android_nfc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/jni/com_android_nfc.cpp b/jni/com_android_nfc.cpp index 93a8ecd..5fd7757 100644 --- a/jni/com_android_nfc.cpp +++ b/jni/com_android_nfc.cpp @@ -183,19 +183,19 @@ nfc_jni_native_monitor_t* nfc_jni_init_monitor(void) if(pthread_mutex_init(&nfc_jni_native_monitor->reentrance_mutex, &recursive_attr) == -1) { - LOGE("NFC Manager Reentrance Mutex creation retruned 0x%08x", errno); + LOGE("NFC Manager Reentrance Mutex creation returned 0x%08x", errno); return NULL; } if(pthread_mutex_init(&nfc_jni_native_monitor->concurrency_mutex, NULL) == -1) { - LOGE("NFC Manager Concurrency Mutex creation retruned 0x%08x", errno); + LOGE("NFC Manager Concurrency Mutex creation returned 0x%08x", errno); return NULL; } if(!listInit(&nfc_jni_native_monitor->sem_list)) { - LOGE("NFC Manager Semaphore List creation retruned 0x%08x", errno); + LOGE("NFC Manager Semaphore List creation failed"); return NULL; } |