Variable ch is now initialized, fixing runtime error with VC7

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@981 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
gewlitys
2003-06-16 15:24:35 +00:00
parent 6c8922b4df
commit 79d461a0db
+1 -1
View File
@@ -908,7 +908,7 @@ _next_token (parse_state *state)
static void
_next_line (parse_state *state, FILE *in)
{
int i, ch;
int i, ch = 0;
state->linenum++;
for (i = 0; i < LINE_SIZE-1; i++)
{