diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-19 06:44:09 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-19 06:44:09 +0000 |
commit | 2fbd47d366028c575703b0268f78aa84710a47f2 (patch) | |
tree | afec9b44d52eb53d4ea6fb43cb9f7311f8ce1539 /array.c | |
parent | 691b7aea37a32a6f6294e07f345f756019656ee4 (diff) |
* array.c (sort_2): fatal typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2723 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'array.c')
-rw-r--r-- | array.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -962,7 +962,7 @@ sort_2(ap, bp) VALUE *ap, *bp; { VALUE retval; - long a = (long)*ap, b = (long)*ap; + long a = (long)*ap, b = (long)*bp; if (FIXNUM_P(a) && FIXNUM_P(b)) { if (a > b) return 1; |