summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Cherry <tomcherry@google.com>2018-11-30 17:33:54 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-11-30 17:33:54 +0100
commit1f66578d6fac54a6d53ec6528529d9084f6a8ba6 (patch)
tree8957138c72e16543eb37fb65a635298c1c6efd91
parentMerge "ImageGenerator: Handle special characters in xml files" (diff)
parentUpdate for long long -> off64_t for fstab.length (diff)
downloadandroid_bootable_recovery-1f66578d6fac54a6d53ec6528529d9084f6a8ba6.tar
android_bootable_recovery-1f66578d6fac54a6d53ec6528529d9084f6a8ba6.tar.gz
android_bootable_recovery-1f66578d6fac54a6d53ec6528529d9084f6a8ba6.tar.bz2
android_bootable_recovery-1f66578d6fac54a6d53ec6528529d9084f6a8ba6.tar.lz
android_bootable_recovery-1f66578d6fac54a6d53ec6528529d9084f6a8ba6.tar.xz
android_bootable_recovery-1f66578d6fac54a6d53ec6528529d9084f6a8ba6.tar.zst
android_bootable_recovery-1f66578d6fac54a6d53ec6528529d9084f6a8ba6.zip
-rw-r--r--roots.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/roots.cpp b/roots.cpp
index 4fcd6feb9..8772c577a 100644
--- a/roots.cpp
+++ b/roots.cpp
@@ -18,6 +18,7 @@
#include <ctype.h>
#include <fcntl.h>
+#include <inttypes.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
@@ -66,7 +67,7 @@ void load_volume_table() {
printf("=========================\n");
for (int i = 0; i < fstab->num_entries; ++i) {
const Volume* v = &fstab->recs[i];
- printf(" %d %s %s %s %lld\n", i, v->mount_point, v->fs_type, v->blk_device, v->length);
+ printf(" %d %s %s %s %" PRId64 "\n", i, v->mount_point, v->fs_type, v->blk_device, v->length);
}
printf("\n");
}