summaryrefslogtreecommitdiffstats
path: root/tools/zipalign/ZipFile.cpp
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-01-08 10:18:46 +0000
committerSteve Block <steveblock@google.com>2012-01-08 11:03:18 +0000
commitca1df5a380069163bbabc7cfed1d48829b8e135e (patch)
tree2686932ce54f77e0150b7fdffe665c815725c6e0 /tools/zipalign/ZipFile.cpp
parent0c13efb4182662db74dd2c4e63b64f2072711b91 (diff)
downloadbuild-ca1df5a380069163bbabc7cfed1d48829b8e135e.zip
build-ca1df5a380069163bbabc7cfed1d48829b8e135e.tar.gz
build-ca1df5a380069163bbabc7cfed1d48829b8e135e.tar.bz2
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/157220 Bug: 5449033 Change-Id: Ieea4e4511e1a95caeea42cd0a0c1147ebf9c2f48
Diffstat (limited to 'tools/zipalign/ZipFile.cpp')
-rw-r--r--tools/zipalign/ZipFile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/zipalign/ZipFile.cpp b/tools/zipalign/ZipFile.cpp
index 6428e9d..0705be3 100644
--- a/tools/zipalign/ZipFile.cpp
+++ b/tools/zipalign/ZipFile.cpp
@@ -780,7 +780,7 @@ status_t ZipFile::compressFpToFp(FILE* dstFp, FILE* srcFp,
if (zerr != Z_OK) {
result = UNKNOWN_ERROR;
if (zerr == Z_VERSION_ERROR) {
- LOGE("Installed zlib is not compatible with linked version (%s)\n",
+ ALOGE("Installed zlib is not compatible with linked version (%s)\n",
ZLIB_VERSION);
} else {
ALOGD("Call to deflateInit2 failed (zerr=%d)\n", zerr);
@@ -1019,7 +1019,7 @@ status_t ZipFile::crunchArchive(void)
pEntry->getLFHOffset(), span);
if (result != NO_ERROR) {
/* this is why you use a temp file */
- LOGE("error during crunch - archive is toast\n");
+ ALOGE("error during crunch - archive is toast\n");
return result;
}