blob: 9dcb46f25f8377e4986b320ee29eb22e8c6b67fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/lex.c
+++ b/lex.c
@@ -107,7 +107,7 @@
yylex()
{
char *p = line + linelim;
- int ret;
+ int ret = 0;
static int isfunc = 0;
static bool isgoto = 0;
static bool colstate = 0;
|