Module: wine Branch: master Commit: 97fd3f3b521252ca0d7f13ca9f09ec2c1cada1a4 URL: http://source.winehq.org/git/wine.git/?a=commit;h=97fd3f3b521252ca0d7f13ca9f...
Author: Huw Davies huw@codeweavers.com Date: Thu Aug 22 09:27:46 2013 +0100
ntdll: Call the correct server request.
---
dlls/ntdll/sync.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/sync.c b/dlls/ntdll/sync.c index 9d14bbb..2f34ee0 100644 --- a/dlls/ntdll/sync.c +++ b/dlls/ntdll/sync.c @@ -1291,7 +1291,7 @@ NTSTATUS WINAPI NtOpenKeyedEvent( HANDLE *handle, ACCESS_MASK access, const OBJE
if (len >= MAX_PATH * sizeof(WCHAR)) return STATUS_NAME_TOO_LONG;
- SERVER_START_REQ( open_event ) + SERVER_START_REQ( open_keyed_event ) { req->access = access; req->attributes = attr ? attr->Attributes : 0;