Commit 3d9d52db authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

localspl: Fix wow64_start_doc Wow64 entry point.

parent 9749caf7
......@@ -520,9 +520,9 @@ static NTSTATUS wow64_start_doc(void *args)
struct
{
unsigned int type;
const PTR32 port;
const PTR32 document_title;
INT64 *doc;
PTR32 port;
PTR32 document_title;
PTR32 doc;
} const *params32 = args;
struct start_doc_params params =
......@@ -530,7 +530,7 @@ static NTSTATUS wow64_start_doc(void *args)
params32->type,
ULongToPtr(params32->port),
ULongToPtr(params32->document_title),
params32->doc,
ULongToPtr(params32->doc),
};
return start_doc(&params);
......@@ -541,7 +541,7 @@ static NTSTATUS wow64_write_doc(void *args)
struct
{
INT64 doc;
const PTR32 buf;
PTR32 buf;
unsigned int size;
} const *params32 = args;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment