From ce0e11aeac76119b96b463605bc1f5318e3d2bde Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 28 Jun 2005 21:05:31 +0000 Subject: [PATCH] Bug #2447: Fix argument order to xf86DrvMsgVerb. (Luc Verhaegen) --- hw/xfree86/fbdevhw/fbdevhw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/fbdevhw/fbdevhw.c b/hw/xfree86/fbdevhw/fbdevhw.c index 6f791aea0..e10856c35 100644 --- a/hw/xfree86/fbdevhw/fbdevhw.c +++ b/hw/xfree86/fbdevhw/fbdevhw.c @@ -803,7 +803,7 @@ fbdevHWAdjustFrame(int scrnIndex, int x, int y, int flags) fPtr->var.xoffset = x; fPtr->var.yoffset = y; if (-1 == ioctl(fPtr->fd,FBIOPAN_DISPLAY,(void*)&fPtr->var)) - xf86DrvMsgVerb(scrnIndex,5, X_WARNING, + xf86DrvMsgVerb(scrnIndex, X_WARNING, 5 "FBIOPAN_DISPLAY: %s\n", strerror(errno)); }