summaryrefslogtreecommitdiffstats
path: root/rild/rild.c
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 20:47:51 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:31:44 +0000
commit6464068a31ff890d42d3da9cdf580d07c9c630d8 (patch)
treee7c2e408597727fe5cf212e1a68d6787ef043d30 /rild/rild.c
parent2bc78d614e349574426d198c37e51ccb7455b5bb (diff)
downloadandroid_hardware_ril-6464068a31ff890d42d3da9cdf580d07c9c630d8.tar.gz
android_hardware_ril-6464068a31ff890d42d3da9cdf580d07c9c630d8.tar.bz2
android_hardware_ril-6464068a31ff890d42d3da9cdf580d07c9c630d8.zip
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: Ib3eab0b780391f9a0ac9b53282616d66a0154ade
Diffstat (limited to 'rild/rild.c')
-rw-r--r--rild/rild.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/rild/rild.c b/rild/rild.c
index 18ff671..9a1975e 100644
--- a/rild/rild.c
+++ b/rild/rild.c
@@ -148,7 +148,7 @@ int main(int argc, char **argv)
int fd = open("/proc/cmdline",O_RDONLY);
if (fd < 0) {
- LOGD("could not open /proc/cmdline:%s", strerror(errno));
+ ALOGD("could not open /proc/cmdline:%s", strerror(errno));
goto OpenLib;
}
@@ -157,7 +157,7 @@ int main(int argc, char **argv)
while (len == -1 && errno == EINTR);
if (len < 0) {
- LOGD("could not read /proc/cmdline:%s", strerror(errno));
+ ALOGD("could not read /proc/cmdline:%s", strerror(errno));
close(fd);
goto OpenLib;
}
@@ -193,7 +193,7 @@ int main(int argc, char **argv)
done = 1;
break;
}
- LOGD("could not connect to %s socket: %s",
+ ALOGD("could not connect to %s socket: %s",
QEMUD_SOCKET_NAME, strerror(errno));
if (--tries == 0)
break;
@@ -235,7 +235,7 @@ int main(int argc, char **argv)
hasLibArgs = 1;
rilLibPath = REFERENCE_RIL_PATH;
- LOGD("overriding with %s %s", arg_overrides[1], arg_overrides[2]);
+ ALOGD("overriding with %s %s", arg_overrides[1], arg_overrides[2]);
}
}
OpenLib: