From 81932981fe145545f88c216a62f4ab055270b0e9 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Sun, 20 Nov 2005 20:48:38 +0000 Subject: [PATCH] Fix really stupid typo (thanks Hartmut) svn path=/trunk/; revision=19388 --- reactos/hal/halx86/generic/fmutex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/hal/halx86/generic/fmutex.c b/reactos/hal/halx86/generic/fmutex.c index faf71a8cfed..77da8d8564d 100644 --- a/reactos/hal/halx86/generic/fmutex.c +++ b/reactos/hal/halx86/generic/fmutex.c @@ -42,7 +42,7 @@ ExAcquireFastMutex(PFAST_MUTEX FastMutex) FastMutex->Contention++; KeWaitForSingleObject(&FastMutex->Gate, WrExecutive, - WaitAny, + KernelMode, FALSE, NULL); }