From e68c0deb66e146e3518e8f74d229aa21453a21ad Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Fri, 28 Nov 2008 07:23:07 +0000 Subject: [PATCH] Fix typo. [r24095] --- token.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/token.c b/token.c index fd589e9..9c98bf0 100644 --- a/token.c +++ b/token.c @@ -129,7 +129,7 @@ void print_token(FILE *f, const token_t *token) fprintf(f, "integer number %lld", token->v.intvalue); break; case T_FLOATINGPOINT: - fprintf(f, "floatingpointer number %LF", token->v.floatvalue); + fprintf(f, "floating-point number %LF", token->v.floatvalue); break; case T_STRING_LITERAL: fprintf(f, "string \"%s\"", token->v.string.begin); -- 2.20.1