From 093af59b745fe966802052b8377c70918e3b3930 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Tue, 30 May 2000 15:28:37 +0000 Subject: [PATCH] Fixed warning. --- misc/comm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/comm.c b/misc/comm.c index bb462ddce78..b0ed5e49a26 100644 --- a/misc/comm.c +++ b/misc/comm.c @@ -2126,7 +2126,7 @@ BOOL WINAPI SetCommState(INT handle,LPDCB lpdcb) default: commerror = IE_BAUDRATE; close( fd ); - ERR("baudrate %d \n",lpdcb->BaudRate); + ERR("baudrate %ld\n",lpdcb->BaudRate); return FALSE; } port.c_ispeed = port.c_ospeed; -- 2.11.4.GIT