mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +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:
parent
5050157eda
commit
76e9fc8c65
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user