mirror of
https://github.com/chenxiaolong/avbroot.git
synced 2026-07-03 14:05:11 +02:00
Merge pull request #31 from chenxiaolong/typo
avbroot/util.py: Fix variable name typo in zero_n()
This commit is contained in:
+1
-1
@@ -142,4 +142,4 @@ def zero_n(f_out, size, buf_size=16384):
|
||||
while size:
|
||||
to_write = min(len(buf_view), size)
|
||||
f_out.write(buf_view[:to_write])
|
||||
size -= n
|
||||
size -= to_write
|
||||
|
||||
Reference in New Issue
Block a user