summaryrefslogtreecommitdiffstats
path: root/mock-ril/src/cpp/worker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mock-ril/src/cpp/worker.cpp')
-rw-r--r--mock-ril/src/cpp/worker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/mock-ril/src/cpp/worker.cpp b/mock-ril/src/cpp/worker.cpp
index 1508a52..63eda56 100644
--- a/mock-ril/src/cpp/worker.cpp
+++ b/mock-ril/src/cpp/worker.cpp
@@ -96,19 +96,19 @@ int WorkerThread::Run(void *workerParam) {
ret = pthread_attr_init(&attr_);
if (ret != 0) {
- LOGE("RIL_Init X: pthread_attr_init failed err=%s", strerror(ret));
+ ALOGE("RIL_Init X: pthread_attr_init failed err=%s", strerror(ret));
return STATUS_ERR;
}
ret = pthread_attr_setdetachstate(&attr_, PTHREAD_CREATE_DETACHED);
if (ret != 0) {
- LOGE("RIL_Init X: pthread_attr_setdetachstate failed err=%s",
+ ALOGE("RIL_Init X: pthread_attr_setdetachstate failed err=%s",
strerror(ret));
return STATUS_ERR;
}
ret = pthread_create(&tid_, &attr_,
(void * (*)(void *))&WorkerThread::Work, this);
if (ret != 0) {
- LOGE("RIL_Init X: pthread_create failed err=%s", strerror(ret));
+ ALOGE("RIL_Init X: pthread_create failed err=%s", strerror(ret));
return STATUS_ERR;
}