summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-09-24 19:56:48 +0200
committerTao Bao <tbao@google.com>2015-09-24 20:06:58 +0200
commit5701d5829de3915e9de0f27a64554297ba88c8a4 (patch)
treee0c34a02537d63d09a99ff841fbddf4f0ecd39d7
parentMerge "minadbd: move from D() to VLOG()." (diff)
downloadandroid_bootable_recovery-5701d5829de3915e9de0f27a64554297ba88c8a4.tar
android_bootable_recovery-5701d5829de3915e9de0f27a64554297ba88c8a4.tar.gz
android_bootable_recovery-5701d5829de3915e9de0f27a64554297ba88c8a4.tar.bz2
android_bootable_recovery-5701d5829de3915e9de0f27a64554297ba88c8a4.tar.lz
android_bootable_recovery-5701d5829de3915e9de0f27a64554297ba88c8a4.tar.xz
android_bootable_recovery-5701d5829de3915e9de0f27a64554297ba88c8a4.tar.zst
android_bootable_recovery-5701d5829de3915e9de0f27a64554297ba88c8a4.zip
-rw-r--r--mtdutils/mtdutils.c8
-rw-r--r--updater/install.cpp2
2 files changed, 5 insertions, 5 deletions
diff --git a/mtdutils/mtdutils.c b/mtdutils/mtdutils.c
index cc3033444..cd4f52cd5 100644
--- a/mtdutils/mtdutils.c
+++ b/mtdutils/mtdutils.c
@@ -300,20 +300,20 @@ static int read_block(const MtdPartition *partition, int fd, char *data)
if (TEMP_FAILURE_RETRY(lseek64(fd, pos, SEEK_SET)) != pos ||
TEMP_FAILURE_RETRY(read(fd, data, size)) != size) {
printf("mtd: read error at 0x%08llx (%s)\n",
- pos, strerror(errno));
+ (long long)pos, strerror(errno));
} else if (ioctl(fd, ECCGETSTATS, &after)) {
printf("mtd: ECCGETSTATS error (%s)\n", strerror(errno));
return -1;
} else if (after.failed != before.failed) {
printf("mtd: ECC errors (%d soft, %d hard) at 0x%08llx\n",
- after.corrected - before.corrected,
- after.failed - before.failed, pos);
+ after.corrected - before.corrected,
+ after.failed - before.failed, (long long)pos);
// copy the comparison baseline for the next read.
memcpy(&before, &after, sizeof(struct mtd_ecc_stats));
} else if ((mgbb = ioctl(fd, MEMGETBADBLOCK, &pos))) {
fprintf(stderr,
"mtd: MEMGETBADBLOCK returned %d at 0x%08llx: %s\n",
- mgbb, pos, strerror(errno));
+ mgbb, (long long)pos, strerror(errno));
} else {
return 0; // Success!
}
diff --git a/updater/install.cpp b/updater/install.cpp
index a6ed078ba..68c990241 100644
--- a/updater/install.cpp
+++ b/updater/install.cpp
@@ -990,7 +990,7 @@ Value* FileGetPropFn(const char* name, State* state, int argc, Expr* argv[]) {
goto done;
}
- if (fread(buffer, 1, st.st_size, f) != st.st_size) {
+ if (fread(buffer, 1, st.st_size, f) != static_cast<size_t>(st.st_size)) {
ErrorAbort(state, "%s: failed to read %lld bytes from %s",
name, (long long)st.st_size+1, filename);
fclose(f);