diff options
author | Steve Block <steveblock@google.com> | 2012-01-04 19:19:03 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-01-04 19:23:34 +0000 |
commit | fe71a61e5b0cb666675900d206251a7c18ed944b (patch) | |
tree | e76dbede05c1e6b92ea4e05878745c6d21ed9d4b /libdiskconfig/diskutils.c | |
parent | 8d66c49258ac4f59bd67c23c9c914cca81f85b01 (diff) | |
download | system_core-fe71a61e5b0cb666675900d206251a7c18ed944b.tar.gz system_core-fe71a61e5b0cb666675900d206251a7c18ed944b.tar.bz2 system_core-fe71a61e5b0cb666675900d206251a7c18ed944b.zip |
Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGE
Bug: 5449033
Change-Id: I4951baa981f09a84ce483e3d1bd0f9ebe009035f
Diffstat (limited to 'libdiskconfig/diskutils.c')
-rw-r--r-- | libdiskconfig/diskutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdiskconfig/diskutils.c b/libdiskconfig/diskutils.c index 22767c00e..be35763e8 100644 --- a/libdiskconfig/diskutils.c +++ b/libdiskconfig/diskutils.c @@ -40,7 +40,7 @@ write_raw_image(const char *dst, const char *src, loff_t offset, int test) int done = 0; uint64_t total = 0; - LOGI("Writing RAW image '%s' to '%s' (offset=%llu)", src, dst, offset); + ALOGI("Writing RAW image '%s' to '%s' (offset=%llu)", src, dst, offset); if ((src_fd = open(src, O_RDONLY)) < 0) { LOGE("Could not open %s for reading (errno=%d).", src, errno); goto fail; @@ -101,7 +101,7 @@ write_raw_image(const char *dst, const char *src, loff_t offset, int test) if (dst_fd >= 0) fsync(dst_fd); - LOGI("Wrote %llu bytes to %s @ %lld", total, dst, offset); + ALOGI("Wrote %llu bytes to %s @ %lld", total, dst, offset); close(src_fd); if (dst_fd >= 0) |