summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-04-11 09:28:21 -0700
committerJeremy Huddleston <jeremyhu@apple.com>2012-05-10 00:50:34 -0700
commitb5bf0ac5405eab77f26bb2f8726644232af17178 (patch)
treec9a0383b47e28d49ef15418ff3aab4aad1d4f1cf
parent943cac51e4cb79dcbd143d4bd6b22ca9327e7703 (diff)
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 <keithp@keithp.com> (cherry picked from commit 592bd0ae2b60cd6f6afd3efc40f5f659b12900b4)
-rw-r--r--hw/xfree86/dixmods/extmod/xf86vmode.c2
1 files changed, 1 insertions, 1 deletions
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 */
);