This commit is contained in:
Antoine Pitrou 2009-01-20 11:42:11 +00:00
parent a0fd8884ca
commit 4f7945f3b3

View file

@ -591,7 +591,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
} }