diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-05-30 21:19:04 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-05-30 21:19:04 +0900 |
| commit | 0e5958d4043001d242c2677d37a9c7db2bb0bf56 (patch) | |
| tree | af213f62e6891e7ab0678251671c043fcd7968e7 /src/sprintf.c | |
| parent | 1ac22054bcaf177770a98d293e2d6016b7c0d695 (diff) | |
| download | mruby-0e5958d4043001d242c2677d37a9c7db2bb0bf56.tar.gz mruby-0e5958d4043001d242c2677d37a9c7db2bb0bf56.zip | |
rename ruby_digitmap to mrb_digitmap
Diffstat (limited to 'src/sprintf.c')
| -rw-r--r-- | src/sprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sprintf.c b/src/sprintf.c index 479efa6c4..dc9b83dec 100644 --- a/src/sprintf.c +++ b/src/sprintf.c @@ -90,7 +90,7 @@ mrb_fix2binstr(mrb_state *mrb, mrb_value x, int base) } *--b = '\0'; do { - *--b = ruby_digitmap[(int)(val % base)]; + *--b = mrb_digitmap[(int)(val % base)]; } while (val /= base); if (mrb_fixnum(x) < 0) { |
