Module: wine Branch: master Commit: 6c4484582bafde7cf7a460ec6104b2eaae48e00a URL: http://source.winehq.org/git/wine.git/?a=commit;h=6c4484582bafde7cf7a460ec61...
Author: Francois Gouget fgouget@free.fr Date: Sun May 29 12:42:15 2016 +0200
kernel32: Spelling fixes.
Signed-off-by: Francois Gouget fgouget@free.fr Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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 32f2d65..f443020 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 );