Typo in string.
authorChristoph Mallon <christoph.mallon@gmx.de>
Wed, 27 Aug 2008 17:35:04 +0000 (17:35 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Wed, 27 Aug 2008 17:35:04 +0000 (17:35 +0000)
[r21522]

parser.c

index 30023cd..3f93c10 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -3715,7 +3715,7 @@ static construct_type_t *parse_function_declarator(declaration_t *declaration)
                                else if (second == NULL) second = "stdcall";
                        }
                        if (declaration->modifiers & DM_FASTCALL) {
-                               if (first == NULL)       first = "faslcall";
+                               if (first == NULL)       first = "fastcall";
                                else if (second == NULL) second = "fastcall";
                        }
                        if (declaration->modifiers & DM_THISCALL) {