summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikhail Lappo <miklelappo@gmail.com>2017-03-23 16:56:50 +0100
committerMikhail Lappo <miklelappo@gmail.com>2017-03-23 16:58:53 +0100
commit17e6d3f3bcd27aedc2ff8fe796ce90dddb04a714 (patch)
tree37cec6e41db0d7ed5efd44142c853655d088f2ed
parentMerge "Remove malloc in edify functions" (diff)
downloadandroid_bootable_recovery-17e6d3f3bcd27aedc2ff8fe796ce90dddb04a714.tar
android_bootable_recovery-17e6d3f3bcd27aedc2ff8fe796ce90dddb04a714.tar.gz
android_bootable_recovery-17e6d3f3bcd27aedc2ff8fe796ce90dddb04a714.tar.bz2
android_bootable_recovery-17e6d3f3bcd27aedc2ff8fe796ce90dddb04a714.tar.lz
android_bootable_recovery-17e6d3f3bcd27aedc2ff8fe796ce90dddb04a714.tar.xz
android_bootable_recovery-17e6d3f3bcd27aedc2ff8fe796ce90dddb04a714.tar.zst
android_bootable_recovery-17e6d3f3bcd27aedc2ff8fe796ce90dddb04a714.zip
-rw-r--r--updater/updater.cpp2
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 << "]";
}
}