diff options
author | Keith Packard <keithp@keithp.com> | 2012-04-11 09:28:21 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-04-11 09:28:21 -0700 |
commit | 592bd0ae2b60cd6f6afd3efc40f5f659b12900b4 (patch) | |
tree | e94027039553ea74432d6c46b19e02123d02fdb0 /hw/xfree86 | |
parent | 10cd6fdc431d2d0835c313b2f5bdda6dcea281fd (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>
Diffstat (limited to 'hw/xfree86')
-rw-r--r-- | hw/xfree86/dixmods/extmod/xf86vmode.c | 2 |
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 */ ); |