Fix typo.
authorChristoph Mallon <christoph.mallon@gmx.de>
Fri, 28 Nov 2008 07:23:07 +0000 (07:23 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Fri, 28 Nov 2008 07:23:07 +0000 (07:23 +0000)
[r24095]

token.c

diff --git a/token.c b/token.c
index fd589e9..9c98bf0 100644 (file)
--- 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);