Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fbd7ae7a authored by Doug Zongker's avatar Doug Zongker Committed by Android Git Automerger
Browse files

am 201cd466: remove shadowed variable declaration

Merge commit '201cd466' into gingerbread

* commit '201cd466':
  remove shadowed variable declaration
parents 17986e6b 201cd466
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -645,7 +645,8 @@ int applypatch(const char* source_filename,
            int enough_space = 0;
            if (retry > 0) {
                size_t free_space = FreeSpaceForFile(target_fs);
                int enough_space =
                enough_space =
                    (free_space > (256 << 10)) &&          // 256k (two-block) minimum
                    (free_space > (target_size * 3 / 2));  // 50% margin of error
                printf("target %ld bytes; free space %ld bytes; retry %d; enough %d\n",
                       (long)target_size, (long)free_space, retry, enough_space);