summaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-26 03:01:30 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-26 03:01:30 +0000
commitee5999b88c9614baa610ba64e1b6483d0f973a8e (patch)
tree104a699244dd06194a385a00484c6c8b04e848d0 /bignum.c
parentea5099860d616522cbf5cdb3b30e64a03452cabe (diff)
downloadruby-ee5999b88c9614baa610ba64e1b6483d0f973a8e.tar.gz
ruby-ee5999b88c9614baa610ba64e1b6483d0f973a8e.tar.xz
ruby-ee5999b88c9614baa610ba64e1b6483d0f973a8e.zip
* bignum.c (rb_quad_pack): get rid of escape sequences.
* dln.c (dln_load, __VMS): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2282 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index 133227390..6b558287c 100644
--- a/bignum.c
+++ b/bignum.c
@@ -290,7 +290,7 @@ rb_quad_pack(buf, val)
if (!RBIGNUM(val)->sign) {
len = QUAD_SIZE;
while (len--) {
- *buf = ‾*buf;
+ *buf = ~*buf;
buf++;
}
}
OSZAR »