diff options
author | Chih-Hung Hsieh <chh@google.com> | 2016-04-18 20:30:55 +0200 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2016-04-18 21:29:30 +0200 |
commit | 54a2747ef305c10d07d8db393125dbcbb461c428 (patch) | |
tree | ad6f90bea569c5f01bbf9485e356dcdb035d79c5 /uncrypt | |
parent | Merge "Fix IWYU errors." (diff) | |
download | android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.gz android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.bz2 android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.lz android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.xz android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.tar.zst android_bootable_recovery-54a2747ef305c10d07d8db393125dbcbb461c428.zip |
Diffstat (limited to '')
-rw-r--r-- | uncrypt/uncrypt.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp index 43a2c2ab4..a1de6a182 100644 --- a/uncrypt/uncrypt.cpp +++ b/uncrypt/uncrypt.cpp @@ -200,8 +200,9 @@ static int produce_block_map(const char* path, const char* map_file, const char* std::vector<int> ranges; - std::string s = android::base::StringPrintf("%s\n%" PRId64 " %ld\n", - blk_dev, sb.st_size, static_cast<long>(sb.st_blksize)); + std::string s = android::base::StringPrintf("%s\n%" PRId64 " %" PRId64 "\n", + blk_dev, static_cast<int64_t>(sb.st_size), + static_cast<int64_t>(sb.st_blksize)); if (!android::base::WriteStringToFd(s, mapfd)) { ALOGE("failed to write %s: %s", tmp_map_file.c_str(), strerror(errno)); return -1; |