Fixed an incorrect format string.

This commit is contained in:
Gerald Pfeifer 2000-07-15 14:58:32 +00:00 committed by Alexandre Julliard
parent e0a08423a0
commit 5dae382f68
1 changed files with 1 additions and 1 deletions

View File

@ -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 );