From f1658a0182a83850aa5e5f207c68ae46f0e9f99e Mon Sep 17 00:00:00 2001 From: Jeff Schwartz Date: Thu, 30 Mar 2017 15:01:26 -0700 Subject: [PATCH] Fix tabs and spaces Commit migrated from https://github.com/dotnet/coreclr/commit/67a8ef7380e9e30f10e67d3b34898903e6d18946 --- src/coreclr/src/gc/windows/gcenv.windows.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coreclr/src/gc/windows/gcenv.windows.cpp b/src/coreclr/src/gc/windows/gcenv.windows.cpp index 471018e..30232bf 100644 --- a/src/coreclr/src/gc/windows/gcenv.windows.cpp +++ b/src/coreclr/src/gc/windows/gcenv.windows.cpp @@ -597,8 +597,8 @@ bool GCToOSInterface::CreateThread(GCThreadFunction function, void* param, GCThr ::SetThreadAffinityMask(gc_thread, (DWORD_PTR)1 << affinity->Processor); } - ResumeThread(gc_thread); - CloseHandle(gc_thread); + ResumeThread(gc_thread); + CloseHandle(gc_thread); return true; } -- 2.7.4