diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-01-12 15:31:32 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-01-12 15:31:32 +0900 |
| commit | 41eff635bf1e592ed71cca4e98136e09b637fbc1 (patch) | |
| tree | 69a3a3368ecbd6c3249b2e6edbe804b25d4caaf4 /src/error.c | |
| parent | fb1dad82aae8c98949be7e5ad7440675c67265bb (diff) | |
| parent | bc4c90de075fd77ecb844daca0a456a06922786b (diff) | |
| download | mruby-41eff635bf1e592ed71cca4e98136e09b637fbc1.tar.gz mruby-41eff635bf1e592ed71cca4e98136e09b637fbc1.zip | |
Merge pull request #3393 from clayton-shopify/fix-exc-initialize
Fix broken MRB_INT64
Diffstat (limited to 'src/error.c')
| -rw-r--r-- | src/error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.c b/src/error.c index d7facd0b9..8e456ff1a 100644 --- a/src/error.c +++ b/src/error.c @@ -44,7 +44,7 @@ static mrb_value exc_initialize(mrb_state *mrb, mrb_value exc) { mrb_value mesg; - int argc; + mrb_int argc; mrb_value *argv; if (mrb_get_args(mrb, "|o*", &mesg, &argv, &argc) >= 1) { |
