diff options
author | Tao Bao <tbao@google.com> | 2017-03-23 21:05:22 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-03-23 21:05:22 +0100 |
commit | 1335a3772f77afe0c230e18107c5b4df43f1a3b5 (patch) | |
tree | c1b3229f9f0fa647eccabe920cffdbae9d4c79fe /updater/updater.cpp | |
parent | Merge "updater: Fix the broken case for apply_patch_check()." am: 9f2062657d am: 923d41ccd5 (diff) | |
parent | Merge "Fixed scanf modifier" am: 577c668861 (diff) | |
download | android_bootable_recovery-1335a3772f77afe0c230e18107c5b4df43f1a3b5.tar android_bootable_recovery-1335a3772f77afe0c230e18107c5b4df43f1a3b5.tar.gz android_bootable_recovery-1335a3772f77afe0c230e18107c5b4df43f1a3b5.tar.bz2 android_bootable_recovery-1335a3772f77afe0c230e18107c5b4df43f1a3b5.tar.lz android_bootable_recovery-1335a3772f77afe0c230e18107c5b4df43f1a3b5.tar.xz android_bootable_recovery-1335a3772f77afe0c230e18107c5b4df43f1a3b5.tar.zst android_bootable_recovery-1335a3772f77afe0c230e18107c5b4df43f1a3b5.zip |
Diffstat (limited to '')
-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 << "]"; } } |