(check_function_format): Correct error in last change.

From-SVN: r5680
This commit is contained in:
Richard Kenner 1993-10-08 10:40:59 -04:00
parent ea8daa3ba3
commit 95216deccf
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ check_function_format (name, assembler_name, params)
/* See if this function is a format function. */
for (info = function_format_list; info; info = info->next)
{
if ((info->assembler_name || assembler_name)
if (info->assembler_name
? (info->assembler_name == assembler_name)
: (info->name == name))
{