summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-numeric-ext
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-04-25 09:47:36 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2013-04-25 09:47:36 +0900
commit30d580ecbc51852b26ada48eac5e597b1210815b (patch)
tree99441519c0849db2b89f824c58a5092438e2ea50 /mrbgems/mruby-numeric-ext
parent5c88c65a11287aa52bc0a606ce96a316036aa94c (diff)
downloadmruby-30d580ecbc51852b26ada48eac5e597b1210815b.tar.gz
mruby-30d580ecbc51852b26ada48eac5e597b1210815b.zip
rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206
Diffstat (limited to 'mrbgems/mruby-numeric-ext')
-rw-r--r--mrbgems/mruby-numeric-ext/src/numeric_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-numeric-ext/src/numeric_ext.c b/mrbgems/mruby-numeric-ext/src/numeric_ext.c
index f193fb531..bb6955b45 100644
--- a/mrbgems/mruby-numeric-ext/src/numeric_ext.c
+++ b/mrbgems/mruby-numeric-ext/src/numeric_ext.c
@@ -22,7 +22,7 @@ mrb_mruby_numeric_ext_gem_init(mrb_state* mrb)
{
struct RClass *i = mrb_class_get(mrb, "Integer");
- mrb_define_method(mrb, i, "chr", mrb_int_chr, ARGS_NONE());
+ mrb_define_method(mrb, i, "chr", mrb_int_chr, MRB_ARGS_NONE());
}
void