summaryrefslogtreecommitdiffstats
path: root/contrib/binutils/gas/atof-generic.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/binutils/gas/atof-generic.c')
-rw-r--r--contrib/binutils/gas/atof-generic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/binutils/gas/atof-generic.c b/contrib/binutils/gas/atof-generic.c
index e3ae2e1..de29f21 100644
--- a/contrib/binutils/gas/atof-generic.c
+++ b/contrib/binutils/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++;
@@ -435,7 +435,7 @@ atof_generic (address_of_string_pointer,
* We have a GROSS internal error.
* This should never happen.
*/
- as_fatal ("failed sanity check.");
+ as_fatal (_("failed sanity check."));
}
}
else
OpenPOWER on IntegriCloud