Skip to content

Commit d2fb99d

Browse files
authored
Fix dump of field ref (#3194)
***NO_CI***
1 parent 8fbcb09 commit d2fb99d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CLR/Diagnostics/Info.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ void CLR_RT_Assembly::DumpToken(CLR_UINT32 token, const CLR_RT_TypeSpec_Index *g
462462
{
463463
// Otherwise fall back to the old FieldDef path
464464
CLR_RT_FieldDef_Index fd;
465-
fd.Set(assemblyIndex, xref.target.data);
465+
fd.data = xref.target.data;
466466
CLR_RT_DUMP::FIELD(fd);
467467
}
468468
break;

0 commit comments

Comments
 (0)