aboutsummaryrefslogtreecommitdiff
path: root/gas/read.c
diff options
context:
space:
mode:
authorSteve Chamberlain <sac@cygnus>1993-03-04 19:55:59 +0000
committerSteve Chamberlain <sac@cygnus>1993-03-04 19:55:59 +0000
commitbf4492933194830c681992f50c16c187b9950b2e (patch)
tree8cd63323bd5f06d9145fc004a514c35ebc4bb9a3 /gas/read.c
parent83386662e9827469a548de9f8b6bfc224487ef0e (diff)
downloadgdb-bf4492933194830c681992f50c16c187b9950b2e.zip
gdb-bf4492933194830c681992f50c16c187b9950b2e.tar.gz
gdb-bf4492933194830c681992f50c16c187b9950b2e.tar.bz2
* read.c (s_space): Multiply repeat count by mult, not fill.
Diffstat (limited to 'gas/read.c')
-rw-r--r--gas/read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/read.c b/gas/read.c
index eae81d4..45398fb 100644
--- a/gas/read.c
+++ b/gas/read.c
@@ -1265,7 +1265,7 @@ s_space (mult)
}
if (mult)
{
- temp_fill *= mult;
+ temp_repeat *= mult;
}
if (temp_repeat <= 0)
{