From 2ab9b79ef9cf161728a55edbb8b004a79a5423f0 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sun, 12 Sep 1999 02:12:38 +0000 Subject: 1999-09-11 Donn Terry * config/atof-ieee.c (atof_ieee): Change what_kind to int. * config/atof-vax.c (flonum_gen2vax): Change format_letter to int. (md_atof): Return NULL rather than 0. * config/tc-i386.c (md_atof): Change type to int. --- gas/config/atof-vax.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gas/config/atof-vax.c') diff --git a/gas/config/atof-vax.c b/gas/config/atof-vax.c index 45b90a8..bc27cdd 100644 --- a/gas/config/atof-vax.c +++ b/gas/config/atof-vax.c @@ -260,7 +260,7 @@ atof_vax (str, what_kind, words) int /* 0: OK. */ flonum_gen2vax (format_letter, f, words) - char format_letter; /* One of 'd' 'f' 'g' 'h'. */ + int format_letter; /* One of 'd' 'f' 'g' 'h'. */ FLONUM_TYPE *f; LITTLENUM_TYPE *words; /* Deliver answer here. */ { @@ -511,7 +511,7 @@ md_atof (what_statement_type, literalP, sizeP) }; *sizeP = number_of_chars; - return kind_of_float ? 0 : _("Bad call to md_atof()"); + return kind_of_float ? NULL : _("Bad call to md_atof()"); } /* end of atof-vax.c */ -- cgit v1.1