]> granicus.if.org Git - python/commitdiff
Fix typo
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 20 Jan 2009 11:42:11 +0000 (11:42 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 20 Jan 2009 11:42:11 +0000 (11:42 +0000)
Modules/_fileio.c

index 22b473c513905dab6c678f1d0c8ebb829ff89917..5b840c000a81a7659eef9cf3d079d44c4f6900d6 100644 (file)
@@ -591,7 +591,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
        }