diff options
author | Tao Bao <tbao@google.com> | 2017-03-23 20:55:24 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-03-23 20:55:25 +0100 |
commit | 577c6688610ef0f9e3aefe9326e5ee4886c79a36 (patch) | |
tree | 5685f1f14cc1adcd809b5b900be24e7bfb64fe09 /updater | |
parent | Merge "updater: Fix the broken case for apply_patch_check()." (diff) | |
parent | Fixed scanf modifier (diff) | |
download | android_bootable_recovery-577c6688610ef0f9e3aefe9326e5ee4886c79a36.tar android_bootable_recovery-577c6688610ef0f9e3aefe9326e5ee4886c79a36.tar.gz android_bootable_recovery-577c6688610ef0f9e3aefe9326e5ee4886c79a36.tar.bz2 android_bootable_recovery-577c6688610ef0f9e3aefe9326e5ee4886c79a36.tar.lz android_bootable_recovery-577c6688610ef0f9e3aefe9326e5ee4886c79a36.tar.xz android_bootable_recovery-577c6688610ef0f9e3aefe9326e5ee4886c79a36.tar.zst android_bootable_recovery-577c6688610ef0f9e3aefe9326e5ee4886c79a36.zip |
Diffstat (limited to 'updater')
-rw-r--r-- | updater/updater.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/updater.cpp b/updater/updater.cpp index 0693cbd98..c09e267a5 100644 --- a/updater/updater.cpp +++ b/updater/updater.cpp @@ -185,7 +185,7 @@ int main(int argc, char** argv) { // Parse the error code in abort message. // Example: "E30: This package is for bullhead devices." if (!line.empty() && line[0] == 'E') { - if (sscanf(line.c_str(), "E%u: ", &state.error_code) != 1) { + if (sscanf(line.c_str(), "E%d: ", &state.error_code) != 1) { LOG(ERROR) << "Failed to parse error code: [" << line << "]"; } } |