diff options
| author | 2012-01-19 14:47:09 -0800 | |
|---|---|---|
| committer | 2012-01-19 14:47:09 -0800 | |
| commit | a826f9e2c4f6329d8d48c927f6e942e78ffaf92f (patch) | |
| tree | 3a4bea403affd07f7611fe13da8cbf64a61ee3e3 /libs/utils/ZipUtils.cpp | |
| parent | 4f367f3387887c538c81c34cc8becaea6fa5e430 (diff) | |
| parent | a51f0e707f1f3142358aa919ea60ad2842803139 (diff) | |
Merge "Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)"
Diffstat (limited to 'libs/utils/ZipUtils.cpp')
| -rw-r--r-- | libs/utils/ZipUtils.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/ZipUtils.cpp b/libs/utils/ZipUtils.cpp index cc5c68a65e91..0fe1a7bfaefa 100644 --- a/libs/utils/ZipUtils.cpp +++ b/libs/utils/ZipUtils.cpp @@ -124,7 +124,7 @@ using namespace android; assert(zerr == Z_STREAM_END); /* other errors should've been caught */ if ((long) zstream.total_out != uncompressedLen) { - LOGW("Size mismatch on inflated file (%ld vs %ld)\n", + ALOGW("Size mismatch on inflated file (%ld vs %ld)\n", zstream.total_out, uncompressedLen); goto z_bail; } @@ -236,7 +236,7 @@ bail: assert(zerr == Z_STREAM_END); /* other errors should've been caught */ if ((long) zstream.total_out != uncompressedLen) { - LOGW("Size mismatch on inflated file (%ld vs %ld)\n", + ALOGW("Size mismatch on inflated file (%ld vs %ld)\n", zstream.total_out, uncompressedLen); goto z_bail; } |