From: Antoine Pitrou Date: Tue, 20 Jan 2009 11:42:11 +0000 (+0000) Subject: Fix typo X-Git-Tag: v3.1a1~452 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f7945f3b34bc3f3b953467731b1cf7185a5d1e6;p=python Fix typo --- diff --git a/Modules/_fileio.c b/Modules/_fileio.c index 22b473c513..5b840c000a 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 }