backport r68802 (bugfix)
diff --git a/Modules/_fileio.c b/Modules/_fileio.c
index 0f09ecd..2a86e07 100644
--- a/Modules/_fileio.c
+++ b/Modules/_fileio.c
@@ -566,7 +566,7 @@
 #if SEEK_CUR != 1
 	case 1: whence = SEEK_CUR; break;
 #endif
-#if SEEL_END != 2
+#if SEEK_END != 2
 	case 2: whence = SEEK_END; break;
 #endif
 	}