summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-01-30 10:18:25 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-01-30 10:18:25 +0000
commit3293a425afd07c4b004e06e14f1735ca841c1411 (patch)
tree4f6cd2c9bd53b72e160fd2810f28ab529fcc577e /bignum.c
parentd1a8766f801ccbb11126413d1fa4f9bea19b00ba (diff)
*** empty log message ***
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@61 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bignum.c b/bignum.c
index 17d9c839c5..357a17dba4 100644
--- a/bignum.c
+++ b/bignum.c
@@ -24,13 +24,13 @@ VALUE cBignum;
#define BIGLO(x) ((x) & (BIGRAD-1))
static VALUE
-bignew_1(class, len, sign)
- VALUE class;
+bignew_1(klass, len, sign)
+ VALUE klass;
UINT len;
char sign;
{
NEWOBJ(big, struct RBignum);
- OBJSETUP(big, cBignum, T_BIGNUM);
+ OBJSETUP(big, klass, T_BIGNUM);
big->sign = sign;
big->len = len;
BDIGITS(big) = ALLOC_N(USHORT, len);