commit | 8024cece5907563dd74b952f370e027439f77e02 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue Jan 20 14:31:08 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Tue Jan 20 14:31:08 2009 +0000 |
tree | f8104c9834f31a5577e34429b23183f7223d5552 | |
parent | e18ef194d93afe9480ea7bd1da24d3636b81f2b3 [diff] [blame] |
backport r68802 (bugfix)
diff --git a/Modules/_fileio.c b/Modules/_fileio.c index 0f09ecd..2a86e07 100644 --- a/Modules/_fileio.c +++ b/Modules/_fileio.c
@@ -566,7 +566,7 @@ #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 }