Fixed scanf modifier

Scanf expectation is to have same type
of pointer to store parsed value and
modifier in format string
This commit is contained in:
Mikhail Lappo 2017-03-23 16:56:50 +01:00
parent 1ea869b0c6
commit 17e6d3f3bc

View file

@ -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 << "]";
}
}