diff options
author | Tom Cherry <tomcherry@google.com> | 2018-10-07 19:31:34 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-10-07 19:31:34 +0200 |
commit | 1a4d234daa26f3954633fd55037193f2827fb36c (patch) | |
tree | b9d7b398741c974cae1ab3cc4a026b9a95a0d07c | |
parent | Merge "Compare the fingerprint before reading the partition" (diff) | |
parent | Use only signed/unsigned numbers with ParseInt/ParseUint respectively (diff) | |
download | android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.gz android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.bz2 android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.lz android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.xz android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.tar.zst android_bootable_recovery-1a4d234daa26f3954633fd55037193f2827fb36c.zip |
Diffstat (limited to '')
-rw-r--r-- | updater/blockimg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp index 838845673..47849a155 100644 --- a/updater/blockimg.cpp +++ b/updater/blockimg.cpp @@ -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; } |