Renamed a struct member.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5191 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2011-08-17 15:50:53 +00:00
parent 9724ed5506
commit 386100dade
2 changed files with 4 additions and 4 deletions

View File

@@ -1264,7 +1264,7 @@ static int CompareModInfoByName (const void* L, const void* R)
}
/*****************************************************************************/
/* Scope info */
/*****************************************************************************/
@@ -1317,9 +1317,9 @@ static void CopyScopeInfo (cc65_scopedata* D, const ScopeInfo* S)
D->scope_type = S->Type;
D->scope_size = S->Size;
if (S->Parent.Info) {
D->scope_parent = S->Parent.Info->Id;
D->parent_id = S->Parent.Info->Id;
} else {
D->scope_parent = CC65_INV_ID;
D->parent_id = CC65_INV_ID;
}
if (S->Label.Info) {
D->symbol_id = S->Label.Info->Id;