From a51f0e707f1f3142358aa919ea60ad2842803139 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Thu, 5 Jan 2012 23:22:43 +0000 Subject: Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) Change-Id: I8fbdfa7a7581f481968dbb65aa40f7042936d7cb --- cmds/installd/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmds/installd/utils.c') diff --git a/cmds/installd/utils.c b/cmds/installd/utils.c index a53a93ce1073..940626e53240 100644 --- a/cmds/installd/utils.c +++ b/cmds/installd/utils.c @@ -83,7 +83,7 @@ int create_pkg_path(char path[PKG_PATH_MAX], if (persona != 0) { int ret = snprintf(dst, dst_size, "%d/", persona); if (ret < 0 || (size_t) ret != uid_len + 1) { - LOGW("Error appending UID to APK path"); + ALOGW("Error appending UID to APK path"); return -1; } } @@ -326,7 +326,7 @@ int get_path_from_env(dir_rec_t* rec, const char* var) { const char* path = getenv(var); int ret = get_path_from_string(rec, path); if (ret < 0) { - LOGW("Problem finding value for environment variable %s\n", var); + ALOGW("Problem finding value for environment variable %s\n", var); } return ret; } -- cgit v1.2.3-59-g8ed1b