diff options
author | Tom Cherry <tomcherry@google.com> | 2018-11-29 22:33:07 +0100 |
---|---|---|
committer | Tom Cherry <tomcherry@google.com> | 2018-11-29 22:33:07 +0100 |
commit | 45e505a4e9ef1247c5c8acb437b351212cbbd409 (patch) | |
tree | f29715849559035647ea5ad6c810c868ab94461e | |
parent | Merge "ImageGenerator: switch to BreakIterator from icu library" (diff) | |
download | android_bootable_recovery-45e505a4e9ef1247c5c8acb437b351212cbbd409.tar android_bootable_recovery-45e505a4e9ef1247c5c8acb437b351212cbbd409.tar.gz android_bootable_recovery-45e505a4e9ef1247c5c8acb437b351212cbbd409.tar.bz2 android_bootable_recovery-45e505a4e9ef1247c5c8acb437b351212cbbd409.tar.lz android_bootable_recovery-45e505a4e9ef1247c5c8acb437b351212cbbd409.tar.xz android_bootable_recovery-45e505a4e9ef1247c5c8acb437b351212cbbd409.tar.zst android_bootable_recovery-45e505a4e9ef1247c5c8acb437b351212cbbd409.zip |
-rw-r--r-- | roots.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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"); } |