From 9739a2920cedc444fa9f0854f768a0a5c66e057b Mon Sep 17 00:00:00 2001 From: Tao Bao Date: Wed, 5 Aug 2015 12:16:20 -0700 Subject: updater: Remove the unused isunresumable in SaveStash(). Change-Id: I6a8d9bea4c1cd8ea7b534682061b90e893b227a2 --- updater/blockimg.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp index d5c8bb195..7da9adf5f 100755 --- a/updater/blockimg.cpp +++ b/updater/blockimg.cpp @@ -768,8 +768,8 @@ static int CreateStash(State* state, int maxblocks, const char* blockdev, } static int SaveStash(const std::string& base, char** wordsave, uint8_t** buffer, - size_t* buffer_alloc, int fd, int usehash, bool* isunresumable) { - if (!wordsave || !buffer || !buffer_alloc || !isunresumable) { + size_t* buffer_alloc, int fd, bool usehash) { + if (!wordsave || !buffer || !buffer_alloc) { return -1; } @@ -1129,7 +1129,7 @@ static int PerformCommandStash(CommandParameters* params) { } return SaveStash(params->stashbase, ¶ms->cpos, ¶ms->buffer, ¶ms->bufsize, - params->fd, (params->version >= 3), ¶ms->isunresumable); + params->fd, (params->version >= 3)); } static int PerformCommandFree(CommandParameters* params) { -- cgit v1.2.3