diff options
author | Adam Jackson <ajax@redhat.com> | 2008-07-24 14:59:14 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-07-24 15:46:08 -0400 |
commit | 9757106bba8f7bea99c5211817fc6b5fde4e6f66 (patch) | |
tree | 374f4c156facb756b943368eea8f9b40d2aa47d7 /Xext/xcmisc.c | |
parent | 6bcde69585fcc8f8dbfe81c115649f19274922fa (diff) |
Remove all empty extension reset hooks, replace with NULL.
Diffstat (limited to 'Xext/xcmisc.c')
-rw-r--r-- | Xext/xcmisc.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/Xext/xcmisc.c b/Xext/xcmisc.c index 2f6208f1b..1ee173bd6 100644 --- a/Xext/xcmisc.c +++ b/Xext/xcmisc.c @@ -48,10 +48,6 @@ from The Open Group. #define UINT32_MAX 0xffffffffU #endif -static void XCMiscResetProc( - ExtensionEntry * /* extEntry */ -); - static DISPATCH_PROC(ProcXCMiscDispatch); static DISPATCH_PROC(ProcXCMiscGetVersion); static DISPATCH_PROC(ProcXCMiscGetXIDList); @@ -66,14 +62,7 @@ XCMiscExtensionInit(INITARGS) { AddExtension(XCMiscExtensionName, 0, 0, ProcXCMiscDispatch, SProcXCMiscDispatch, - XCMiscResetProc, StandardMinorOpcode); -} - -/*ARGSUSED*/ -static void -XCMiscResetProc (extEntry) - ExtensionEntry *extEntry; -{ + NULL, StandardMinorOpcode); } static int |