kernel32: Change fixme to trace in comm.c.

This commit is contained in:
Wolfram Sang 2010-08-09 12:15:50 +02:00 committed by Alexandre Julliard
parent 9f0f17f853
commit f999060f4d
1 changed files with 1 additions and 2 deletions

View File

@ -1138,7 +1138,7 @@ BOOL WINAPI GetCommProperties(
HANDLE hFile, /* [in] handle of the comm port */
LPCOMMPROP lpCommProp) /* [out] pointer to struct to be filled */
{
FIXME("(%p %p )\n",hFile,lpCommProp);
TRACE("(%p %p)\n",hFile,lpCommProp);
if(!lpCommProp)
return FALSE;
@ -1150,7 +1150,6 @@ BOOL WINAPI GetCommProperties(
lpCommProp->wPacketLength = 1;
lpCommProp->wPacketVersion = 1;
lpCommProp->dwServiceMask = SP_SERIALCOMM;
lpCommProp->dwReserved1 = 0;
lpCommProp->dwMaxTxQueue = 4096;
lpCommProp->dwMaxRxQueue = 4096;
lpCommProp->dwMaxBaud = BAUD_115200;