Merge "Use only signed/unsigned numbers with ParseInt/ParseUint respectively"

This commit is contained in:
Tom Cherry
2018-10-07 17:31:34 +00:00
committed by Gerrit Code Review

View File

@@ -109,7 +109,7 @@ static bool ParseLastCommandFile(size_t* last_command_index) {
return false;
}
if (!android::base::ParseInt(lines[0], last_command_index)) {
if (!android::base::ParseUint(lines[0], last_command_index)) {
LOG(ERROR) << "Failed to parse integer in: " << lines[0];
return false;
}