From: Steve Chamberlain Date: Thu, 4 Mar 1993 19:55:59 +0000 (+0000) Subject: * read.c (s_space): Multiply repeat count by mult, not fill. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bf4492933194830c681992f50c16c187b9950b2e;p=binutils-gdb.git * read.c (s_space): Multiply repeat count by mult, not fill. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 9bb03c3c2a2..9af8d71cd83 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. diff --git a/gas/read.c b/gas/read.c index eae81d41b3f..45398fbe9f7 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) {