From 2b15bd810deb7172ffa62643a78a6611d4ba928b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Oct 2010 04:54:13 +0000 Subject: [PATCH] #10222: fix for overzealous AIX compiler. --- Parser/tokenizer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h index 424567d148a..2be3bf2e315 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 */