Module: wine Branch: master Commit: 650f85174a5fd869fdb7a1bc4e2bd5456a49942c URL: http://source.winehq.org/git/wine.git/?a=commit;h=650f85174a5fd869fdb7a1bc4e...
Author: Detlef Riekenberg wine.dev@web.de Date: Tue Sep 29 13:21:00 2009 +0200
localspl: Fix type of a WCHAR buffer.
---
dlls/localspl/provider.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/localspl/provider.c b/dlls/localspl/provider.c index 7bfc32d..2bf9414 100644 --- a/dlls/localspl/provider.c +++ b/dlls/localspl/provider.c @@ -568,7 +568,7 @@ static DWORD monitor_loadall(void) static monitor_t * monitor_loadui(monitor_t * pm) { monitor_t * pui = NULL; - LPWSTR buffer[MAX_PATH]; + WCHAR buffer[MAX_PATH]; HANDLE hXcv; DWORD len; DWORD res; @@ -591,8 +591,8 @@ static monitor_t * monitor_loadui(monitor_t * pm) TRACE("got %u with %p\n", res, hXcv); if (res) { res = pm->monitor->pfnXcvDataPort(hXcv, monitorUIW, NULL, 0, (BYTE *) buffer, sizeof(buffer), &len); - TRACE("got %u with %s\n", res, debugstr_w((LPWSTR) buffer)); - if (res == ERROR_SUCCESS) pui = monitor_load(NULL, (LPWSTR) buffer); + TRACE("got %u with %s\n", res, debugstr_w(buffer)); + if (res == ERROR_SUCCESS) pui = monitor_load(NULL, buffer); pm->monitor->pfnXcvClosePort(hXcv); } }