diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-11 20:09:58 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-03-11 20:09:58 +0000 |
commit | 7f3563c06a29911ba49ce6a2a4ea74e452c98c7e (patch) | |
tree | 4bb6b44d118a65c29bd210ae3655035e2b7d5ddf /missing | |
parent | aa84e4057701572394c79d6350daf9ae9c9b2960 (diff) | |
download | ruby-7f3563c06a29911ba49ce6a2a4ea74e452c98c7e.tar.gz ruby-7f3563c06a29911ba49ce6a2a4ea74e452c98c7e.tar.xz ruby-7f3563c06a29911ba49ce6a2a4ea74e452c98c7e.zip |
* missing/vsnprintf.c (BSD_vfprintf): commented out code which has
no effect at all.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@22897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing')
-rw-r--r-- | missing/vsnprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/missing/vsnprintf.c b/missing/vsnprintf.c index d8dd110bb..9216f813e 100644 --- a/missing/vsnprintf.c +++ b/missing/vsnprintf.c @@ -1047,7 +1047,7 @@ number: if ((dprec = prec) >= 0) ox[0] = *cp++; ox[1] = '.'; PRINT(ox, 2); - if (_double || flags & ALT == 0) { + if (_double /*|| flags & ALT == 0*/) { PRINT(cp, ndig-1); } else /* 0.[0..] */ /* __dtoa irregularity */ |