From 26976a187fa0b3e393118b6bf1a72707b0767ddb Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 18 Sep 2007 18:33:17 -0700 Subject: [PATCH] Fix error-reporting in hexadecimal floating-point numbers --- float.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/float.c b/float.c index 08dfdb47..b87db848 100644 --- a/float.c +++ b/float.c @@ -128,7 +128,7 @@ static void ieee_flconvert_hex(char *string, uint16_t *mant, } else { error(ERR_NONFATAL, "floating-point constant: `%c' is invalid character", - *string); + c); return; } }