From 6c4484582bafde7cf7a460ec6104b2eaae48e00a Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 29 May 2016 12:42:15 +0200 Subject: [PATCH] kernel32: Spelling fixes. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- dlls/kernel32/virtual.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/kernel32/virtual.c b/dlls/kernel32/virtual.c index 32f2d65a921..f443020ba8d 100644 --- a/dlls/kernel32/virtual.c +++ b/dlls/kernel32/virtual.c @@ -238,7 +238,7 @@ BOOL WINAPI VirtualProtectEx( HANDLE process, LPVOID addr, SIZE_T size, NTSTATUS status; DWORD prot; - /* Win9x allows to pass NULL as old_prot while it fails on NT */ + /* Win9x allows passing NULL as old_prot while this fails on NT */ if (!old_prot && (GetVersion() & 0x80000000)) old_prot = &prot; status = NtProtectVirtualMemory( process, &addr, &size, new_prot, old_prot );