eolian - fix parser with missing break in hanling open bracket

fixes CID 1232732
This commit is contained in:
Carsten Haitzler 2014-08-27 11:32:17 +09:00
parent db78176151
commit 875bf96d19
1 changed files with 1 additions and 0 deletions

View File

@ -455,6 +455,7 @@ parse_expr_simple(Eo_Lexer *ls)
eo_lexer_get(ls);
expr = parse_expr(ls);
check_match(ls, ')', '(', line, col);
break;
}
default:
expr = NULL; /* shut up compiler */