1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-25 13:29:41 +00:00

Small fix for an error message.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5296 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-09-03 19:11:12 +00:00
parent 5050157eda
commit 76e9fc8c65

View File

@ -1367,7 +1367,7 @@ static void Declarator (const DeclSpec* Spec, Declaration* D, declmode_t Mode)
/* We cannot specify fastcall for variadic functions */
if ((F->Flags & FD_VARIADIC) && (Qualifiers & T_QUAL_FASTCALL)) {
Error ("Variadic functions cannot be `__fastcall'");
Error ("Variadic functions cannot be `__fastcall__'");
Qualifiers &= ~T_QUAL_FASTCALL;
}