Commit 650f8517 authored by Detlef Riekenberg's avatar Detlef Riekenberg Committed by Alexandre Julliard

localspl: Fix type of a WCHAR buffer.

parent 068e861d
...@@ -568,7 +568,7 @@ static DWORD monitor_loadall(void) ...@@ -568,7 +568,7 @@ static DWORD monitor_loadall(void)
static monitor_t * monitor_loadui(monitor_t * pm) static monitor_t * monitor_loadui(monitor_t * pm)
{ {
monitor_t * pui = NULL; monitor_t * pui = NULL;
LPWSTR buffer[MAX_PATH]; WCHAR buffer[MAX_PATH];
HANDLE hXcv; HANDLE hXcv;
DWORD len; DWORD len;
DWORD res; DWORD res;
...@@ -591,8 +591,8 @@ static monitor_t * monitor_loadui(monitor_t * pm) ...@@ -591,8 +591,8 @@ static monitor_t * monitor_loadui(monitor_t * pm)
TRACE("got %u with %p\n", res, hXcv); TRACE("got %u with %p\n", res, hXcv);
if (res) { if (res) {
res = pm->monitor->pfnXcvDataPort(hXcv, monitorUIW, NULL, 0, (BYTE *) buffer, sizeof(buffer), &len); res = pm->monitor->pfnXcvDataPort(hXcv, monitorUIW, NULL, 0, (BYTE *) buffer, sizeof(buffer), &len);
TRACE("got %u with %s\n", res, debugstr_w((LPWSTR) buffer)); TRACE("got %u with %s\n", res, debugstr_w(buffer));
if (res == ERROR_SUCCESS) pui = monitor_load(NULL, (LPWSTR) buffer); if (res == ERROR_SUCCESS) pui = monitor_load(NULL, buffer);
pm->monitor->pfnXcvClosePort(hXcv); pm->monitor->pfnXcvClosePort(hXcv);
} }
} }
......
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