Commit 5dae382f authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

Fixed an incorrect format string.

parent e0a08423
......@@ -2635,7 +2635,7 @@ BOOL WINAPI GetDefaultCommConfigW( LPCWSTR lpszName,LPCOMMCONFIG lpCC,
LPSTR lpszNameA;
BOOL ret;
TRACE("(%p,%p,%d)\n",lpszName,lpCC,*lpdwSize);
TRACE("(%p,%p,%ld)\n",lpszName,lpCC,*lpdwSize);
lpszNameA = HEAP_strdupWtoA( GetProcessHeap(), 0, lpszName );
ret=GetDefaultCommConfigA(lpszNameA,lpCC,lpdwSize);
HeapFree( GetProcessHeap(), 0, lpszNameA );
......
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