diff options
| author | 2012-01-19 17:28:22 -0800 | |
|---|---|---|
| committer | 2012-01-19 17:28:22 -0800 | |
| commit | dde686e2bdf7ea679dae4fd4edbf94c71802dc28 (patch) | |
| tree | 6a2ea7e5a7d5a010adb25bf920dc41dee8243da8 /libs/utils/ZipFileRO.cpp | |
| parent | a1e873975704814416ee4d5023bf0740ec195ec0 (diff) | |
| parent | 08d3c6e5ba5c3e5fcc386b07efa709325d45b9ff (diff) | |
am 08d3c6e5: am 4f367f33: Merge "Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF)"
* commit '08d3c6e5ba5c3e5fcc386b07efa709325d45b9ff':
Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF)
Diffstat (limited to 'libs/utils/ZipFileRO.cpp')
| -rw-r--r-- | libs/utils/ZipFileRO.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/utils/ZipFileRO.cpp b/libs/utils/ZipFileRO.cpp index 306935271aea..6ca9a28ba10a 100644 --- a/libs/utils/ZipFileRO.cpp +++ b/libs/utils/ZipFileRO.cpp @@ -210,7 +210,7 @@ bool ZipFileRO::mapCentralDirectory(void) ssize_t actual = TEMP_FAILURE_RETRY(read(mFd, scanBuf, sizeof(int32_t))); if (actual != (ssize_t) sizeof(int32_t)) { - LOGI("couldn't read first signature from zip archive: %s", strerror(errno)); + ALOGI("couldn't read first signature from zip archive: %s", strerror(errno)); free(scanBuf); return false; } @@ -218,7 +218,7 @@ bool ZipFileRO::mapCentralDirectory(void) { unsigned int header = get4LE(scanBuf); if (header == kEOCDSignature) { - LOGI("Found Zip archive, but it looks empty\n"); + ALOGI("Found Zip archive, but it looks empty\n"); free(scanBuf); return false; } else if (header != kLFHSignature) { @@ -761,7 +761,7 @@ bool ZipFileRO::uncompressEntry(ZipEntryRO entry, int fd) const (ZD_TYPE) actual, (ZD_TYPE) uncompLen); goto unmap; } else { - LOGI("+++ successful write\n"); + ALOGI("+++ successful write\n"); } } else { if (!inflateBuffer(fd, ptr, uncompLen, compLen)) |