[Patch #1615868 by Lars Gustaebel] Use Py_off_t to fix BZ2File.seek() for offsets > 2Gb
diff --git a/Modules/bz2module.c b/Modules/bz2module.c
index 27a3827..7a7d6cb 100644
--- a/Modules/bz2module.c
+++ b/Modules/bz2module.c
@@ -996,7 +996,7 @@
 	char small_buffer[SMALLCHUNK];
 	char *buffer = small_buffer;
 	size_t buffersize = SMALLCHUNK;
-	int bytesread = 0;
+	Py_off_t bytesread = 0;
 	size_t readsize;
 	int chunksize;
 	int bzerror;