summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iutil.py b/iutil.py
index db07af7c0..a2cd63391 100644
--- a/iutil.py
+++ b/iutil.py
@@ -132,7 +132,7 @@ def copyFile(source, to):
f = os.open(source, os.O_RDONLY)
t = os.open(to, os.O_RDWR | os.O_TRUNC | os.O_CREAT)
- count = os.read(f, 16384)
+ count = os.read(f, 262144)
while (count):
os.write(t, count)
count = os.read(f, 16384)