diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-08-03 23:14:50 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-08-03 23:16:17 -0700 |
commit | 0bf7eaf3052ce24066b0a7c14860b4762fb81364 (patch) | |
tree | 9a3bac09a5dd6de53bf5e7a3005ea3b06f7ad1b9 | |
parent | 736f2d64725c6df8413e627bd40ce7ecb011acc7 (diff) |
Ansify function arguments in VTsw_noop.c
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
-rw-r--r-- | hw/xfree86/os-support/shared/VTsw_noop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xfree86/os-support/shared/VTsw_noop.c b/hw/xfree86/os-support/shared/VTsw_noop.c index a3cfe40b9..78cbe0e34 100644 --- a/hw/xfree86/os-support/shared/VTsw_noop.c +++ b/hw/xfree86/os-support/shared/VTsw_noop.c @@ -36,19 +36,19 @@ */ Bool -xf86VTSwitchPending() +xf86VTSwitchPending(void) { return(FALSE); } Bool -xf86VTSwitchAway() +xf86VTSwitchAway(void) { return(FALSE); } Bool -xf86VTSwitchTo() +xf86VTSwitchTo(void) { return(TRUE); } |