From 90faf092b459782de237f787f519500a594b7c3f Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Wed, 29 Jul 2009 13:43:04 +0000 Subject: [PATCH] Fixed a compilation warning --- src/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.c b/src/parser.c index addbb17..111a860 100644 --- a/src/parser.c +++ b/src/parser.c @@ -431,7 +431,7 @@ static int _type_specifier(C99 * c99) * | enum-specifier | typedef-name */ { int ret = 0; - CodeClass cclass; + CodeClass cclass = CODE_CLASS_NULL; DEBUG_GRAMMAR(); if(_parse_in_set(c99, c99set_struct_or_union_specifier))