diff options
| author | 2012-01-19 17:28:26 -0800 | |
|---|---|---|
| committer | 2012-01-19 17:28:26 -0800 | |
| commit | db2b39300a8f763cf2d0c9808deb86db87d5492c (patch) | |
| tree | fce1cbeaacc788437bfba6ae0655e93fd74c9271 /cmds/installd/utils.c | |
| parent | dde686e2bdf7ea679dae4fd4edbf94c71802dc28 (diff) | |
| parent | f3f650db96d40014a0203393c585c368b0dd7a9a (diff) | |
am f3f650db: am a826f9e2: Merge "Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)"
* commit 'f3f650db96d40014a0203393c585c368b0dd7a9a':
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)
Diffstat (limited to 'cmds/installd/utils.c')
| -rw-r--r-- | cmds/installd/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |