From: Georg Brandl Date: Fri, 29 Oct 2010 04:54:13 +0000 (+0000) Subject: #10222: fix for overzealous AIX compiler. X-Git-Tag: v3.2a4~309 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2b15bd810deb7172ffa62643a78a6611d4ba928b;p=thirdparty%2FPython%2Fcpython.git #10222: fix for overzealous AIX compiler. --- diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h index 424567d148a0..2be3bf2e3158 100644 --- a/Parser/tokenizer.h +++ b/Parser/tokenizer.h @@ -15,7 +15,7 @@ extern "C" { enum decoding_state { STATE_INIT, STATE_RAW, - STATE_NORMAL, /* have a codec associated with input */ + STATE_NORMAL /* have a codec associated with input */ }; /* Tokenizer state */