backport r68802 (bugfix)

This commit is contained in:
Benjamin Peterson 2009-01-20 14:31:08 +00:00
parent e18ef194d9
commit 8024cece59
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@ portable_lseek(int fd, PyObject *posobj, int whence)
#if SEEK_CUR != 1 #if SEEK_CUR != 1
case 1: whence = SEEK_CUR; break; case 1: whence = SEEK_CUR; break;
#endif #endif
#if SEEL_END != 2 #if SEEK_END != 2
case 2: whence = SEEK_END; break; case 2: whence = SEEK_END; break;
#endif #endif
} }