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

Commit f50b7a38 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "simg_dump.py: fix error for CHUNK_TYPE_FILL" am: f2065c88 am: 9b5afb80 am: e6732f33

parents 5715c36c e6732f33
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ def main():
          curtype = format("Fill with 0x%08X" % (fill))
          if showhash:
            h = hashlib.sha1()
            data = fill_bin * (blk_sz / 4);
            data = fill_bin * (blk_sz // 4);
            for block in range(chunk_sz):
              h.update(data)
            curhash = h.hexdigest()