Fixed issue at19616

This commit is contained in:
David Anderson 2005-11-19 09:26:30 +00:00
parent 32cd6be7f5
commit 83ea8b82b9

View File

@ -3300,9 +3300,8 @@ static int newfunc(char *firstname,int firsttag,int fpublic,int fstatic,int stoc
static int argcompare(arginfo *a1,arginfo *a2) static int argcompare(arginfo *a1,arginfo *a2)
{ {
int result,level,i; int result=1,level,i;
result= strcmp(a1->name,a2->name)==0; /* name */
if (result) if (result)
result= a1->ident==a2->ident; /* type/class */ result= a1->ident==a2->ident; /* type/class */
if (result) if (result)