Skip to content

Commit 06ce69d

Browse files
committed
Fix variable name collision
1 parent c93cb4b commit 06ce69d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/coreclr/vm/comsynchronizable.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ extern "C" BOOL QCALLTYPE ThreadNative_Start(QCall::ThreadHandle thread, int thr
191191
{
192192
QCALL_CONTRACT;
193193

194-
BOOL ret = TRUE;
194+
BOOL result = TRUE;
195195

196196
BEGIN_QCALL;
197197

@@ -268,13 +268,13 @@ extern "C" BOOL QCALLTYPE ThreadNative_Start(QCall::ThreadHandle thread, int thr
268268
{
269269
GCX_COOP();
270270

271-
ret = FALSE;
271+
result = FALSE;
272272
exception.Set(pNewThread->GetExceptionDuringStartup());
273273
}
274274

275275
END_QCALL;
276276

277-
return ret;
277+
return result;
278278
}
279279

280280
extern "C" void QCALLTYPE ThreadNative_SetPriority(QCall::ObjectHandleOnStack thread, INT32 iPriority)

0 commit comments

Comments
 (0)