summaryrefslogtreecommitdiffstats
path: root/libcutils/properties.c
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-05 22:25:38 +0000
committerSteve Block <steveblock@google.com>2012-01-05 22:25:38 +0000
commitae8b56c0d17a97aff0b98e6405c7cc9811bbbc3d (patch)
treef860c0f93c3b1e49c97912f31458fcfd79ba8602 /libcutils/properties.c
parentfe71a61e5b0cb666675900d206251a7c18ed944b (diff)
downloadsystem_core-ae8b56c0d17a97aff0b98e6405c7cc9811bbbc3d.zip
system_core-ae8b56c0d17a97aff0b98e6405c7cc9811bbbc3d.tar.gz
system_core-ae8b56c0d17a97aff0b98e6405c7cc9811bbbc3d.tar.bz2
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) DO NOT MERGE
Bug: 5449033 Change-Id: I1e070511b6a538e9f1c94657356437a457d58882
Diffstat (limited to 'libcutils/properties.c')
-rw-r--r--libcutils/properties.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcutils/properties.c b/libcutils/properties.c
index 98dbf50..e29d261 100644
--- a/libcutils/properties.c
+++ b/libcutils/properties.c
@@ -99,7 +99,7 @@ static int connectToServer(const char* fileName)
sock = socket(AF_UNIX, SOCK_STREAM, 0);
if (sock < 0) {
- LOGW("UNIX domain socket create failed (errno=%d)\n", errno);
+ ALOGW("UNIX domain socket create failed (errno=%d)\n", errno);
return -1;
}
@@ -110,7 +110,7 @@ static int connectToServer(const char* fileName)
if (cc < 0) {
// ENOENT means socket file doesn't exist
// ECONNREFUSED means socket exists but nobody is listening
- //LOGW("AF_UNIX connect failed for '%s': %s\n",
+ //ALOGW("AF_UNIX connect failed for '%s': %s\n",
// fileName, strerror(errno));
close(sock);
return -1;
@@ -128,7 +128,7 @@ static void init(void)
gPropFd = connectToServer(SYSTEM_PROPERTY_PIPE_NAME);
if (gPropFd < 0) {
- //LOGW("not connected to system property server\n");
+ //ALOGW("not connected to system property server\n");
} else {
//ALOGV("Connected to system property server\n");
}