Merge "Fixed scanf modifier" am: 577c668861
am: d414ae465e
Change-Id: If548f8240521dacba70e969f625728160d2bde2a
This commit is contained in:
+1
-1
@@ -185,7 +185,7 @@ int main(int argc, char** argv) {
|
|||||||
// Parse the error code in abort message.
|
// Parse the error code in abort message.
|
||||||
// Example: "E30: This package is for bullhead devices."
|
// Example: "E30: This package is for bullhead devices."
|
||||||
if (!line.empty() && line[0] == 'E') {
|
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 << "]";
|
LOG(ERROR) << "Failed to parse error code: [" << line << "]";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user