From 76e9fc8c65b7e7cba400c66d67b0467a7e47031e Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 3 Sep 2011 19:11:12 +0000 Subject: [PATCH] Small fix for an error message. git-svn-id: svn://svn.cc65.org/cc65/trunk@5296 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/declare.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc65/declare.c b/src/cc65/declare.c index 587d7ce74..93331f160 100644 --- a/src/cc65/declare.c +++ b/src/cc65/declare.c @@ -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; } -- 2.39.5