From d9a622197ded1a6b0497d9a001a172e57e14b0e8 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 28 May 1999 15:28:56 +0000 Subject: -Wchar-subscripts cleanup * listing.c (listing_newline): Use unsigned char variable, so calls to isascii,iscntrl are correct. * atof-generic.c (atof_generic): Cast arg to isdigit, et. al. with (unsigned char). * ecoff.c (ecoff_directive_ent,ecoff_stab): Ditto. * config/obj-elf.c (obj_elf_vtable_inherit): Ditto. * config/tc-mips.c (mips_ip,mips16_ip): Ditto. (my_getSmallExpression,get_number,s_mips_ent): Ditto. --- gas/atof-generic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gas/atof-generic.c') diff --git a/gas/atof-generic.c b/gas/atof-generic.c index 316f665..de29f21 100644 --- a/gas/atof-generic.c +++ b/gas/atof-generic.c @@ -220,7 +220,7 @@ atof_generic (address_of_string_pointer, && (!c || !strchr (string_of_decimal_exponent_marks, c))); p++) { - if (isdigit (c)) + if (isdigit ((unsigned char) c)) { /* This may be retracted below. */ number_of_digits_after_decimal++; -- cgit v1.1