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/bigreq.c | |
parent | 6bcde69585fcc8f8dbfe81c115649f19274922fa (diff) |
Remove all empty extension reset hooks, replace with NULL.
Diffstat (limited to 'Xext/bigreq.c')
-rw-r--r-- | Xext/bigreq.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/Xext/bigreq.c b/Xext/bigreq.c index f0dec2960..1e807d820 100644 --- a/Xext/bigreq.c +++ b/Xext/bigreq.c @@ -41,10 +41,6 @@ from The Open Group. #include "opaque.h" #include "modinit.h" -static void BigReqResetProc( - ExtensionEntry * /* extEntry */ -); - static DISPATCH_PROC(ProcBigReqDispatch); void @@ -52,14 +48,7 @@ BigReqExtensionInit(INITARGS) { AddExtension(XBigReqExtensionName, 0, 0, ProcBigReqDispatch, ProcBigReqDispatch, - BigReqResetProc, StandardMinorOpcode); -} - -/*ARGSUSED*/ -static void -BigReqResetProc (extEntry) - ExtensionEntry *extEntry; -{ + NULL, StandardMinorOpcode); } static int |