Commit 4f7945f3 authored by Antoine Pitrou's avatar Antoine Pitrou

Fix typo

parent a0fd8884
...@@ -591,7 +591,7 @@ portable_lseek(int fd, PyObject *posobj, int whence) ...@@ -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
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment