From 592bd0ae2b60cd6f6afd3efc40f5f659b12900b4 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Wed, 11 Apr 2012 09:28:21 -0700 Subject: [PATCH] hw/xfree86: Spurious ');' in xf86vmode.c messed up indentation badly Inside the unfinished XF86VIDMODE_EVENTS #ifdef block the function definition for xf86VidModeNotifyEvent had an extra ');' before the prototype argument declarations. This was harmless for the compiler as the code never gets used, but completely messed up the file re-indentation. This patch removes the spurious characters in preparation for re-indenting the file. Signed-off-by: Keith Packard --- hw/xfree86/dixmods/extmod/xf86vmode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/dixmods/extmod/xf86vmode.c b/hw/xfree86/dixmods/extmod/xf86vmode.c index 6e2a8e9b2..9f64f8ec7 100644 --- a/hw/xfree86/dixmods/extmod/xf86vmode.c +++ b/hw/xfree86/dixmods/extmod/xf86vmode.c @@ -75,7 +75,7 @@ static unsigned char XF86VidModeReqCode = 0; #ifdef XF86VIDMODE_EVENTS static int XF86VidModeEventBase = 0; -static void SXF86VidModeNotifyEvent(); +static void SXF86VidModeNotifyEvent( xXF86VidModeNotifyEvent * /* from */ , xXF86VidModeNotifyEvent * /* to */ );