From 832b5296792f2fbcc76ea78b5599e3cd1884cc29 Mon Sep 17 00:00:00 2001 From: Jun Hiroe Date: Mon, 27 Oct 2014 01:50:21 +0900 Subject: Replace int with mrb_bool in parse_string func --- src/parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parse.y') diff --git a/src/parse.y b/src/parse.y index 644250079..531d00cfb 100644 --- a/src/parse.y +++ b/src/parse.y @@ -3838,7 +3838,7 @@ parse_string(parser_state *p) newtok(p); while ((c = nextc(p)) != end || nest_level != 0) { if (hinf && (c == '\n' || c < 0)) { - int line_head; + mrb_bool line_head; tokadd(p, '\n'); tokfix(p); p->lineno++; -- cgit v1.2.3