aboutsummaryrefslogtreecommitdiff
path: root/gas/bignum-copy.c
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1993-01-07 10:48:49 +0000
committerKen Raeburn <raeburn@cygnus>1993-01-07 10:48:49 +0000
commit4b0dd31c9f7606f6675a462320e047b56ad7412c (patch)
tree3b9ab15f71a67a73f362700d3af58f3881926a47 /gas/bignum-copy.c
parent6218894f95612e7355412334080922e735063da6 (diff)
downloadgdb-4b0dd31c9f7606f6675a462320e047b56ad7412c.zip
gdb-4b0dd31c9f7606f6675a462320e047b56ad7412c.tar.gz
gdb-4b0dd31c9f7606f6675a462320e047b56ad7412c.tar.bz2
Lots of changes from Eric Youngdale, mostly for VAX and VMS support.
Also, fix another goof in read.c, which caused ".data" not to work...
Diffstat (limited to 'gas/bignum-copy.c')
-rw-r--r--gas/bignum-copy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/bignum-copy.c b/gas/bignum-copy.c
index 9ec9200..af221aa 100644
--- a/gas/bignum-copy.c
+++ b/gas/bignum-copy.c
@@ -66,7 +66,7 @@ bignum_copy (in, in_length, out, out_length)
if (out_length > in_length)
{
- memset ((char *) (out + out_length),
+ memset ((char *) (out + in_length),
'\0', (out_length - in_length) << LITTLENUM_SHIFT);
}