From f94c5b8d8fbf4ca8c55620936aee60ba5a8f231a Mon Sep 17 00:00:00 2001 From: lateralusX Date: Wed, 13 Sep 2017 14:50:38 +0200 Subject: [PATCH] Fixed typo in call to SignalObjectAndWait. --- mono/utils/mono-os-wait-win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono/utils/mono-os-wait-win32.c b/mono/utils/mono-os-wait-win32.c index 5d18a717588..85706182bdc 100644 --- a/mono/utils/mono-os-wait-win32.c +++ b/mono/utils/mono-os-wait-win32.c @@ -155,7 +155,7 @@ mono_win32_signal_object_and_wait (HANDLE toSignal, HANDLE toWait, DWORD timeout enter_alertable_wait (info); } - result = SignalObjectAndWait (toSignal, towlower, timeout, alertable); + result = SignalObjectAndWait (toSignal, toWait, timeout, alertable); // NOTE, leave_alertable_wait should not affect GetLastError but // if changed, last error need to be preserved and reset before returning. -- 2.25.1