Module: wine Branch: master Commit: f42b1e9b9cee0fc758baaf6b24230103dbfcd333 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f42b1e9b9cee0fc758baaf6b24... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Tue Aug 14 12:31:04 2007 +0200 ntdll: Fixed the prototype of the open_nt_file wrapper. --- dlls/ntdll/actctx.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ntdll/actctx.c b/dlls/ntdll/actctx.c index f7a0fb9..5d13afd 100644 --- a/dlls/ntdll/actctx.c +++ b/dlls/ntdll/actctx.c @@ -1525,7 +1525,7 @@ static NTSTATUS parse_manifest( struct actctx_loader* acl, struct assembly_ident return status; } -static NTSTATUS open_nt_file( HANDLE handle, UNICODE_STRING *name ) +static NTSTATUS open_nt_file( HANDLE *handle, UNICODE_STRING *name ) { OBJECT_ATTRIBUTES attr; IO_STATUS_BLOCK io;