fix buffer size
diff --git a/Lib/cmp.py b/Lib/cmp.py
index a73b795..4ebdfc6 100644
--- a/Lib/cmp.py
+++ b/Lib/cmp.py
@@ -51,7 +51,7 @@
 	return type, size, mtime
 
 def do_cmp(f1, f2): # Compare two files, really
-	bufsize = 8096 # Could be tuned
+	bufsize = 8*1024 # Could be tuned
 	fp1 = open(f1, 'r')
 	fp2 = open(f2, 'r')
 	while 1: