diff options
author | Steve Chamberlain <sac@cygnus> | 1993-03-04 19:55:59 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1993-03-04 19:55:59 +0000 |
commit | bf4492933194830c681992f50c16c187b9950b2e (patch) | |
tree | 8cd63323bd5f06d9145fc004a514c35ebc4bb9a3 /gas | |
parent | 83386662e9827469a548de9f8b6bfc224487ef0e (diff) | |
download | gdb-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')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/read.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 9bb03c3..9af8d71 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +Thu Mar 4 11:52:23 1993 Steve Chamberlain (sac@thepub.cygnus.com) + + * read.c (s_space): Multiply repeat count by mult, not fill. + Thu Mar 4 05:20:42 1993 Ken Raeburn (raeburn@cygnus.com) * read.c: Include ctype.h. @@ -1265,7 +1265,7 @@ s_space (mult) } if (mult) { - temp_fill *= mult; + temp_repeat *= mult; } if (temp_repeat <= 0) { |