summaryrefslogtreecommitdiff
path: root/libs/utils/ObbFile.cpp
diff options
context:
space:
mode:
author Jean-Baptiste Queru <jbq@google.com> 2012-01-19 14:46:54 -0800
committer android code review <noreply-gerritcodereview@google.com> 2012-01-19 14:46:54 -0800
commit837796e9649c5e1b88659579eec0a504b4155538 (patch)
tree6273cd25cfe69a8a9b1e8719a5c2f15840845b69 /libs/utils/ObbFile.cpp
parent04b2818730f0e95359452d260bf6b93b0a8284d8 (diff)
parent5b11920b1ac845fa6d5890e0e107c576b57a4c4a (diff)
Merge "Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF)"
Diffstat (limited to 'libs/utils/ObbFile.cpp')
-rw-r--r--libs/utils/ObbFile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/utils/ObbFile.cpp b/libs/utils/ObbFile.cpp
index 2907b5666b..11fe1e9731 100644
--- a/libs/utils/ObbFile.cpp
+++ b/libs/utils/ObbFile.cpp
@@ -179,14 +179,14 @@ bool ObbFile::parseObbFile(int fd)
actual = TEMP_FAILURE_RETRY(read(fd, scanBuf, footerSize));
// readAmount is guaranteed to be less than kMaxBufSize
if (actual != (ssize_t)footerSize) {
- LOGI("couldn't read ObbFile footer: %s\n", strerror(errno));
+ ALOGI("couldn't read ObbFile footer: %s\n", strerror(errno));
free(scanBuf);
return false;
}
#ifdef DEBUG
for (int i = 0; i < footerSize; ++i) {
- LOGI("char: 0x%02x\n", scanBuf[i]);
+ ALOGI("char: 0x%02x\n", scanBuf[i]);
}
#endif
@@ -217,7 +217,7 @@ bool ObbFile::parseObbFile(int fd)
free(scanBuf);
#ifdef DEBUG
- LOGI("Obb scan succeeded: packageName=%s, version=%d\n", mPackageName.string(), mVersion);
+ ALOGI("Obb scan succeeded: packageName=%s, version=%d\n", mPackageName.string(), mVersion);
#endif
return true;