From 6f072a36c0e27e99194158fd9cf87abda7853fe1 Mon Sep 17 00:00:00 2001 From: ayumin Date: Tue, 19 Mar 2013 19:19:46 +0000 Subject: * ext/bigdecimal/bigdecimal.c: fixed typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39830 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/bigdecimal/bigdecimal.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8ea80685e3..d453bec7cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Mar 20 04:15:32 2013 Ayumu AIZAWA + + * ext/bigdecimal/bigdecimal.c: fixed typo. + patched by Vipul A M + Sat Mar 16 03:40:49 2013 KOSAKI Motohiro * test/ruby/test_signal.rb (test_hup_me): added a few comments. diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c index 414f124c44..4535da878d 100644 --- a/ext/bigdecimal/bigdecimal.c +++ b/ext/bigdecimal/bigdecimal.c @@ -5255,7 +5255,7 @@ VpCtoV(Real *a, const char *int_chr, size_t ni, const char *frac, size_t nf, con ef = eb / (SIGNED_VALUE)BASE_FIG; ef = eb - ef * (SIGNED_VALUE)BASE_FIG; if (ef) { - ++j; /* Means to add one more preceeding zero */ + ++j; /* Means to add one more preceding zero */ ++e; } } -- cgit v1.2.3