Skip to content

Commit

Permalink
Pass by reference (#3066)
Browse files Browse the repository at this point in the history
  • Loading branch information
cshung authored May 12, 2022
1 parent f0c0170 commit e109d3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SOS/Strike/eeheap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ void GCPrintLargeHeapSegmentInfo(const GCHeapDetails &heap, DWORD_PTR &total_all
}
}

void GCPrintPinnedHeapSegmentInfo(const GCHeapDetails &heap, DWORD_PTR &total_allocated_size, DWORD_PTR total_committed_size)
void GCPrintPinnedHeapSegmentInfo(const GCHeapDetails &heap, DWORD_PTR &total_allocated_size, DWORD_PTR& total_committed_size)
{
DWORD_PTR dwAddrSeg;
DacpHeapSegmentData segment;
Expand Down

0 comments on commit e109d3e

Please sign in to comment.