clusapi: Don't trace the contents of output pointers.

The issue was detected with Valgrind.
This commit is contained in:
Andrew Nguyen 2009-12-16 05:36:55 -06:00 committed by Alexandre Julliard
parent 314d2c3e1c
commit 0cc09adf7e

View file

@ -40,7 +40,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(clusapi);
*/
DWORD WINAPI GetNodeClusterState(LPCWSTR lpszNodeName, LPDWORD pdwClusterState)
{
FIXME("(%s,%p,%u) stub!\n",debugstr_w(lpszNodeName),pdwClusterState, *pdwClusterState);
FIXME("(%s,%p) stub!\n",debugstr_w(lpszNodeName),pdwClusterState);
*pdwClusterState = 0;
@ -97,7 +97,7 @@ DWORD WINAPI ClusterCloseEnum(HCLUSENUM hEnum)
*/
DWORD WINAPI ClusterEnum(HCLUSENUM hEnum, DWORD dwIndex, LPDWORD lpdwType, LPWSTR lpszName, LPDWORD lpcchName)
{
FIXME("(%p, %u, %u, %p, %u) stub!\n", hEnum, dwIndex, *lpdwType, lpszName, *lpcchName);
FIXME("(%p, %u, %p, %p, %u) stub!\n", hEnum, dwIndex, lpdwType, lpszName, *lpcchName);
return ERROR_NO_MORE_ITEMS;
}