kernel32: Change fixme to trace in comm.c.
authorWolfram Sang <wolfram@the-dreams.de>
Mon, 9 Aug 2010 10:15:50 +0000 (12:15 +0200)
committerAlexandre Julliard <julliard@winehq.org>
Tue, 17 Aug 2010 12:18:45 +0000 (14:18 +0200)
dlls/kernel32/comm.c

index f4edfd3650188f7d1d5bce32260e0a0476722777..9653d6e71fee9e24e78d21516cbf550c863913da 100644 (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;