From 8024cece5907563dd74b952f370e027439f77e02 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 20 Jan 2009 14:31:08 +0000 Subject: [PATCH] backport r68802 (bugfix) --- Modules/_fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_fileio.c b/Modules/_fileio.c index 0f09ecd8a3b..2a86e07e436 100644 --- a/Modules/_fileio.c +++ b/Modules/_fileio.c @@ -566,7 +566,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 }