summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2015-11-24 07:44:54 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2015-11-24 07:44:54 +0900
commit625a3fee7729a12b0ff613e80b7b45ba0e2f086b (patch)
treefae9895bb4dbb53280c21b70404124688c91ace9
parent18190fa77e7177acaa769f88aa1305de94c8ae2f (diff)
parent058ffcb29c859e406e5372961f0f22833ace787c (diff)
downloadmruby-625a3fee7729a12b0ff613e80b7b45ba0e2f086b.tar.gz
mruby-625a3fee7729a12b0ff613e80b7b45ba0e2f086b.zip
Merge pull request #3033 from sgnr/compiler-fix-mrb-disable-stdio-typo
Fix MRB_DISABLE_STDIO typo.
-rw-r--r--mrbgems/mruby-compiler/core/parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y
index 032e9e16b..ff135e000 100644
--- a/mrbgems/mruby-compiler/core/parse.y
+++ b/mrbgems/mruby-compiler/core/parse.y
@@ -5442,7 +5442,7 @@ mrb_parser_new(mrb_state *mrb)
p->pool = pool;
p->s = p->send = NULL;
-#ifndef MRB_DISBLE_STDIO
+#ifndef MRB_DISABLE_STDIO
p->f = NULL;
#endif