diff options
Diffstat (limited to 'Modules/_fileio.c')
-rw-r--r-- | Modules/_fileio.c | 2 |
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 } |