diff options
author | Daniel Stone <daniel@fooishbar.org> | 2012-07-10 02:02:52 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-09 23:06:41 -0700 |
commit | bddb8c6cbe52ba9923b1d36d01f5ac9391b0ec0e (patch) | |
tree | c7feaa325a0bdf8e59036bcadbe6494e3bcf12a7 /Xext | |
parent | eb9661fef9f59587f898371f97a0952ac14d125f (diff) |
Xinerama: Fix ExtensionInit prototype
Huh, so I guess INITARGS used to be int argc, char *argv then. Either
way, it's now void, so fix that ...
Signed-off-by: Daniel Stone <daniel@fooishbar.org>
Reviewed-by: Cyril Brulebois <kibi@debian.org>
Reviewed-by: Jamey Sharp <jamey@minilop.net>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'Xext')
-rw-r--r-- | Xext/panoramiX.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xext/panoramiX.c b/Xext/panoramiX.c index bb253c393..df67c009c 100644 --- a/Xext/panoramiX.c +++ b/Xext/panoramiX.c @@ -434,7 +434,7 @@ XineramaReinitData(void) */ void -PanoramiXExtensionInit(int argc, char *argv[]) +PanoramiXExtensionInit(void) { int i; Bool success = FALSE; |