]> granicus.if.org Git - python/commitdiff
backport r68802 (bugfix)
authorBenjamin Peterson <benjamin@python.org>
Tue, 20 Jan 2009 14:31:08 +0000 (14:31 +0000)
committerBenjamin Peterson <benjamin@python.org>
Tue, 20 Jan 2009 14:31:08 +0000 (14:31 +0000)
Modules/_fileio.c

index 0f09ecd8a3b0df09138c8f7084fdca9ece0cb86e..2a86e07e4369f707a7b044e812ce99050c67ca10 100644 (file)
@@ -566,7 +566,7 @@ portable_lseek(int fd, PyObject *posobj, int whence)
 #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
        }