diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-04-27 08:56:39 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-04-27 08:56:39 -0700 |
| commit | 2b6be163082927ecdfa203b68639a8ff303469e6 (patch) | |
| tree | 43b1b48dd938f508bc9c6e71f273a17cf7764f7a /src/parse.y | |
| parent | fdd4920ffdf098fd245079d6c0a881c42b776971 (diff) | |
| parent | f9647592ef940271ff2c45ef2c1e42989646cdb7 (diff) | |
| download | mruby-2b6be163082927ecdfa203b68639a8ff303469e6.tar.gz mruby-2b6be163082927ecdfa203b68639a8ff303469e6.zip | |
Merge pull request #61 from pbhogan/fix-warnings
Fix various warnings
Diffstat (limited to 'src/parse.y')
| -rw-r--r-- | src/parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.y b/src/parse.y index be18b1d35..04e0a9d01 100644 --- a/src/parse.y +++ b/src/parse.y @@ -4658,7 +4658,7 @@ parser_new(mrb_state *mrb) p->cmd_start = TRUE; p->in_def = p->in_single = FALSE; - p->capture_errors = NULL; + p->capture_errors = 0; p->lineno = 1; #if defined(PARSER_TEST) || defined(PARSER_DEBUG) |
