fix compiler warning
diff --git a/Modules/_fileio.c b/Modules/_fileio.c
index 03632f7..22b473c 100644
--- a/Modules/_fileio.c
+++ b/Modules/_fileio.c
@@ -60,7 +60,7 @@
 internal_close(PyFileIOObject *self)
 {
 	int err = 0;
-	int save_errno;
+	int save_errno = 0;
 	if (self->fd >= 0) {
 		int fd = self->fd;
 		self->fd = -1;