diff options
author | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2010-03-18 04:46:20 -0500 |
---|---|---|
committer | Yaakov Selkowitz <yselkowitz@users.sourceforge.net> | 2010-03-22 00:47:55 -0500 |
commit | 57a049ea89b008c0b60316c3b6e6ff5c8fbd4cad (patch) | |
tree | e4905d6d2871920f7e93bbed9330f69596d502bf /Xext | |
parent | 822b9f9a3e822df8848995eda246f83864d1366f (diff) |
Xext: fix old-style function definitions in xf86bigfont.c
Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Reviewed-by: Julien Cristau <jcristau@debian.org>
Diffstat (limited to 'Xext')
-rw-r--r-- | Xext/xf86bigfont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Xext/xf86bigfont.c b/Xext/xf86bigfont.c index ba8b60358..ce33fda8b 100644 --- a/Xext/xf86bigfont.c +++ b/Xext/xf86bigfont.c @@ -143,7 +143,7 @@ CheckForShmSyscall(void) #endif void -XFree86BigfontExtensionInit() +XFree86BigfontExtensionInit(void) { if (AddExtension(XF86BIGFONTNAME, XF86BigfontNumberEvents, @@ -302,7 +302,7 @@ XF86BigfontFreeFontShm( /* Called upon fatal signal. */ void -XF86BigfontCleanup() +XF86BigfontCleanup(void) { #ifdef HAS_SHM while (ShmList) |