Merge "Fixed scanf modifier"
am: 577c668861

Change-Id: I5d28d5c71996e260c5e901b66884285d6e8ba1e8
diff --git a/updater/updater.cpp b/updater/updater.cpp
index 0693cbd..c09e267 100644
--- a/updater/updater.cpp
+++ b/updater/updater.cpp
@@ -185,7 +185,7 @@
         // 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 << "]";
           }
         }