1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-07 19:29:18 +00:00

Fixed a bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@1356 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-07-15 21:00:28 +00:00
parent 7e9d911d16
commit 0921d9c1ee

View File

@ -152,7 +152,7 @@ int F_HasVoidReturn (const Function* F)
int F_IsVariadic (const Function* F)
/* Return true if this is a variadic function */
{
return (F->Desc->Flags & FD_OLDSTYLE) != 0;
return (F->Desc->Flags & FD_VARIADIC) != 0;
}