diff options
author | Julien Cristau <jcristau@debian.org> | 2008-10-26 13:11:41 +0100 |
---|---|---|
committer | Julien Cristau <jcristau@debian.org> | 2008-10-26 13:11:41 +0100 |
commit | 66fd05acd6118102aaaebc230d5c03e0758c6089 (patch) | |
tree | 2a7623a1f81a874bcccc4ef00c7b8a38c402d4da | |
parent | 4b96ba8ddf36f84d4b8c0f2964535bd90477a742 (diff) |
xfree86: Silence compiler warnings about function prototypes
xf86Init.c:136: warning: function declaration isn't a prototype
xf86Init.c:243: warning: function declaration isn't a prototype
xf86Init.c:249: warning: function declaration isn't a prototype
-rw-r--r-- | hw/xfree86/common/xf86Init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index c0ff0b3f2..7de7a3f49 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -132,7 +132,7 @@ static Bool formatsDone = FALSE; #endif static void -xf86PrintBanner() +xf86PrintBanner(void) { #if PRE_RELEASE ErrorF("\n" @@ -239,13 +239,13 @@ xf86PrintBanner() } static void -xf86PrintMarkers() +xf86PrintMarkers(void) { LogPrintMarkers(); } static void -DoModalias() +DoModalias(void) { int i = -1; char **vlist; |