diff options
author | Alan Modra <amodra@gmail.com> | 2000-06-02 02:52:10 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-06-02 02:52:10 +0000 |
commit | b75c0c920f88f3b6a5877509b14f59b5d86f88b5 (patch) | |
tree | fbdf3fdb737ae2096200576af5b22eb8817603af /gas/config/tc-m88k.c | |
parent | f0d4cc9e0ec5ad1533782d32bbf5029b2601828f (diff) | |
download | gdb-b75c0c920f88f3b6a5877509b14f59b5d86f88b5.zip gdb-b75c0c920f88f3b6a5877509b14f59b5d86f88b5.tar.gz gdb-b75c0c920f88f3b6a5877509b14f59b5d86f88b5.tar.bz2 |
is_end_of_line fixes.
Diffstat (limited to 'gas/config/tc-m88k.c')
-rw-r--r-- | gas/config/tc-m88k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-m88k.c b/gas/config/tc-m88k.c index f77460a..a8f5b43 100644 --- a/gas/config/tc-m88k.c +++ b/gas/config/tc-m88k.c @@ -1311,7 +1311,7 @@ s_bss () as_warn (_("Ignoring attempt to re-define symbol %s."), name); } - while (!is_end_of_line[*input_line_pointer]) + while (!is_end_of_line[(unsigned char) *input_line_pointer]) { input_line_pointer++; } |