diff options
| author | 2012-01-19 14:46:39 -0800 | |
|---|---|---|
| committer | 2012-01-19 14:46:40 -0800 | |
| commit | 04b2818730f0e95359452d260bf6b93b0a8284d8 (patch) | |
| tree | 503bcc990035a119e91d16dfc304b386bd832445 /libs/utils/Asset.cpp | |
| parent | 49c36b18b3bc648a42a85fa5fdd30fd61e9a4bd8 (diff) | |
| parent | a6c2fd5ac1ffd9837d2f9b454202d446d9d4c266 (diff) | |
Merge "Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF)"
Diffstat (limited to 'libs/utils/Asset.cpp')
| -rw-r--r-- | libs/utils/Asset.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/utils/Asset.cpp b/libs/utils/Asset.cpp index 7fd2c87314..7c34c6a351 100644 --- a/libs/utils/Asset.cpp +++ b/libs/utils/Asset.cpp @@ -210,7 +210,7 @@ Asset::~Asset(void) offset = ftell(fp); fclose(fp); if (!scanResult) { - LOGD("File '%s' is not in gzip format\n", fileName); + ALOGD("File '%s' is not in gzip format\n", fileName); ::close(fd); return NULL; } @@ -384,12 +384,12 @@ status_t _FileAsset::openChunk(const char* fileName, int fd, off64_t offset, siz fileLength = lseek64(fd, 0, SEEK_END); if (fileLength == (off64_t) -1) { // probably a bad file descriptor - LOGD("failed lseek (errno=%d)\n", errno); + ALOGD("failed lseek (errno=%d)\n", errno); return UNKNOWN_ERROR; } if ((off64_t) (offset + length) > fileLength) { - LOGD("start (%ld) + len (%ld) > end (%ld)\n", + ALOGD("start (%ld) + len (%ld) > end (%ld)\n", (long) offset, (long) length, (long) fileLength); return BAD_INDEX; } |