diff options
author | Mark Salyzyn <salyzyn@google.com> | 2014-03-14 21:53:41 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-03-14 21:53:41 +0100 |
commit | 026ebe0214d6c1c9b3ddc22c35e9ac37e5f622bc (patch) | |
tree | 0ce9c3520be76db70f29a63fca0b895a028934af /recovery.cpp | |
parent | Merge "separate fbdev-specific code out from minui" (diff) | |
parent | Recovery 64-bit compile issues (diff) | |
download | android_bootable_recovery-026ebe0214d6c1c9b3ddc22c35e9ac37e5f622bc.tar android_bootable_recovery-026ebe0214d6c1c9b3ddc22c35e9ac37e5f622bc.tar.gz android_bootable_recovery-026ebe0214d6c1c9b3ddc22c35e9ac37e5f622bc.tar.bz2 android_bootable_recovery-026ebe0214d6c1c9b3ddc22c35e9ac37e5f622bc.tar.lz android_bootable_recovery-026ebe0214d6c1c9b3ddc22c35e9ac37e5f622bc.tar.xz android_bootable_recovery-026ebe0214d6c1c9b3ddc22c35e9ac37e5f622bc.tar.zst android_bootable_recovery-026ebe0214d6c1c9b3ddc22c35e9ac37e5f622bc.zip |
Diffstat (limited to 'recovery.cpp')
-rw-r--r-- | recovery.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recovery.cpp b/recovery.cpp index d803cadf1..448f315b0 100644 --- a/recovery.cpp +++ b/recovery.cpp @@ -174,11 +174,11 @@ get_args(int *argc, char ***argv) { get_bootloader_message(&boot); // this may fail, leaving a zeroed structure if (boot.command[0] != 0 && boot.command[0] != 255) { - LOGI("Boot command: %.*s\n", sizeof(boot.command), boot.command); + LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command); } if (boot.status[0] != 0 && boot.status[0] != 255) { - LOGI("Boot status: %.*s\n", sizeof(boot.status), boot.status); + LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status); } // --- if arguments weren't supplied, look in the bootloader control block |