| commit | 5dae382f6843a13c2619c517b298c57ab48fe570 | [log] [tgz] |
|---|---|---|
| author | Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> | Sat Jul 15 14:58:32 2000 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Sat Jul 15 14:58:32 2000 +0000 |
| tree | c3f5bcf402515c6bef310de62e6998e42f79a437 | |
| parent | e0a08423a08053fdf3d4ad168eb75e4484348ed8 [diff] [blame] |
Fixed an incorrect format string.
diff --git a/misc/comm.c b/misc/comm.c index af09427..4df8fce 100644 --- a/misc/comm.c +++ b/misc/comm.c
@@ -2635,7 +2635,7 @@ 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 );