Skip to content

Commit 6ba85fc

Browse files
committed
Use better variable name.
1 parent 14bd0e8 commit 6ba85fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ReClass.NET/MemoryScanner/Scanner.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@ public IEnumerable<ScanResult> GetResults()
8282
return CurrentStore.GetResultBlocks().SelectMany(rb => rb.Results.Select(r =>
8383
{
8484
// Convert the block offset to a real address.
85-
var c = r.Clone();
86-
c.Address = c.Address.Add(rb.Start);
87-
return c;
85+
var scanResult = r.Clone();
86+
scanResult.Address = scanResult.Address.Add(rb.Start);
87+
return scanResult;
8888
}));
8989
}
9090

0 commit comments

Comments
 (0)