diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-03 04:34:03 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-03 04:34:03 -0800 |
| commit | 1e017018a83d2c97d3e2054224bd5e6a0bb2e417 (patch) | |
| tree | a7893dfb524c6d86137a82d395d63ed6f15262c1 /src | |
| parent | f2a39ef4103a1dc44c38ac36e23cc849b9bc61dc (diff) | |
| parent | 7ba301c2011e6c5d54480cd51450c9c85598ac03 (diff) | |
| download | mruby-1e017018a83d2c97d3e2054224bd5e6a0bb2e417.tar.gz mruby-1e017018a83d2c97d3e2054224bd5e6a0bb2e417.zip | |
Merge pull request #928 from cremno/mrb_open-void
mrb_open takes no arguments: (void) instead of ()
Diffstat (limited to 'src')
| -rw-r--r-- | src/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.c b/src/state.c index 53773ac89..46d8780b7 100644 --- a/src/state.c +++ b/src/state.c @@ -72,7 +72,7 @@ mrb_alloca_free(mrb_state *mrb) } mrb_state* -mrb_open() +mrb_open(void) { mrb_state *mrb = mrb_open_allocf(allocf, NULL); |
