Skip to content

Commit

Permalink
Fix a build error on x86 with FEATURE_AUTO_TRACE turned on (dotnet#79164
Browse files Browse the repository at this point in the history
)
  • Loading branch information
cshung committed Dec 3, 2022
1 parent 042d3ee commit 02c144a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/vm/autotrace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ void auto_trace_launch_internal()

void auto_trace_launch()
{
for (int i = 0; i < g_n_tracers; ++i)
for (size_t i = 0; i < g_n_tracers; ++i)
{
auto_trace_launch_internal();
}
Expand Down

0 comments on commit 02c144a

Please sign in to comment.