From: Christoph Mallon Date: Wed, 27 Aug 2008 17:35:04 +0000 (+0000) Subject: Typo in string. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=2ab8e214ae98e8d79e7f22dbc7da9716356ad5b2;p=cparser Typo in string. [r21522] --- diff --git a/parser.c b/parser.c index 30023cd..3f93c10 100644 --- 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) {