mirror of
https://github.com/cc65/cc65.git
synced 2025-04-06 20:37:16 +00:00
Corrected the error message about struct/union members not found.
This commit is contained in:
parent
bbcb39978c
commit
29c50ab25f
@ -1219,7 +1219,7 @@ static void StructRef (ExprDesc* Expr)
|
||||
NextToken ();
|
||||
Field = FindStructField (Expr->Type, Ident);
|
||||
if (Field == 0) {
|
||||
Error ("No field named '%s' found in %s", GetBasicTypeName (Expr->Type), Ident);
|
||||
Error ("No field named '%s' found in %s", Ident, GetBasicTypeName (Expr->Type));
|
||||
/* Make the expression an integer at address zero */
|
||||
ED_MakeConstAbs (Expr, 0, type_int);
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user