summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-01-20 11:42:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-01-20 11:42:11 (GMT)
commit4f7945f3b34bc3f3b953467731b1cf7185a5d1e6 (patch)
tree198299e29ce9acef308b49ecd9ac9b4c05817245 /Modules
parenta0fd8884ca0bd41b5daee3a5f40ca4fee149e5c5 (diff)
downloadcpython-4f7945f3b34bc3f3b953467731b1cf7185a5d1e6.zip
cpython-4f7945f3b34bc3f3b953467731b1cf7185a5d1e6.tar.gz
cpython-4f7945f3b34bc3f3b953467731b1cf7185a5d1e6.tar.bz2
Fix typo
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_fileio.c b/Modules/_fileio.c
index 22b473c..5b840c0 100644
--- a/Modules/_fileio.c
+++ b/Modules/_fileio.c
@@ -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
}