Skip to content

Commit 791d88a

Browse files
committed
fix: remove unnecessary blank line in Run-One function
1 parent f4b34c4 commit 791d88a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/scripts/allocator_bench_windows.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function Run-One([string]$allocator, [string]$features) {
2929
$p = Get-Process -Id $proc.Id -ErrorAction Stop
3030
$current = [math]::Max($p.WorkingSet64, $p.PeakWorkingSet64)
3131
if ($current -gt $peak) { $peak = $current }
32-
32+
3333
$wmi = Get-CimInstance Win32_Process -Filter "ProcessId=$($proc.Id)" -ErrorAction SilentlyContinue
3434
if ($wmi -and $wmi.PageFaults -gt $faults) { $faults = $wmi.PageFaults }
3535
} catch { }

0 commit comments

Comments
 (0)