From: Christoph Mallon Date: Fri, 28 Nov 2008 07:23:07 +0000 (+0000) Subject: Fix typo. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=e68c0deb66e146e3518e8f74d229aa21453a21ad;p=cparser Fix typo. [r24095] --- 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);