Commit f999060f authored by Wolfram Sang's avatar Wolfram Sang Committed by Alexandre Julliard

kernel32: Change fixme to trace in comm.c.

parent 9f0f17f8
......@@ -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;
......
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