registry: Fix some mistakes in the reversion of prior commits.
This commit is contained in:
parent
140a4660ac
commit
4363d70c6b
|
@ -52,7 +52,7 @@ BigReqExtensionInit(INITARGS)
|
|||
{
|
||||
AddExtension(XBigReqExtensionName, 0, 0,
|
||||
ProcBigReqDispatch, ProcBigReqDispatch,
|
||||
BigReqResetProc, StandardMinorOpcode)))
|
||||
BigReqResetProc, StandardMinorOpcode);
|
||||
}
|
||||
|
||||
/*ARGSUSED*/
|
||||
|
|
|
@ -75,7 +75,7 @@ DPMSExtensionInit(INITARGS)
|
|||
{
|
||||
AddExtension(DPMSExtensionName, 0, 0,
|
||||
ProcDPMSDispatch, SProcDPMSDispatch,
|
||||
DPMSResetProc, StandardMinorOpcode)))
|
||||
DPMSResetProc, StandardMinorOpcode);
|
||||
}
|
||||
|
||||
/*ARGSUSED*/
|
||||
|
|
|
@ -72,7 +72,7 @@ FontCacheExtensionInit(INITARGS)
|
|||
{
|
||||
AddExtension(FONTCACHENAME, FontCacheNumberEvents, FontCacheNumberErrors,
|
||||
ProcFontCacheDispatch, SProcFontCacheDispatch,
|
||||
FontCacheResetProc, StandardMinorOpcode)))
|
||||
FontCacheResetProc, StandardMinorOpcode);
|
||||
}
|
||||
|
||||
/*ARGSUSED*/
|
||||
|
|
|
@ -58,7 +58,7 @@ MITMiscExtensionInit(INITARGS)
|
|||
{
|
||||
AddExtension(MITMISCNAME, 0, 0,
|
||||
ProcMITDispatch, SProcMITDispatch,
|
||||
MITResetProc, StandardMinorOpcode)))
|
||||
MITResetProc, StandardMinorOpcode);
|
||||
}
|
||||
|
||||
/*ARGSUSED*/
|
||||
|
|
|
@ -66,7 +66,7 @@ XCMiscExtensionInit(INITARGS)
|
|||
{
|
||||
AddExtension(XCMiscExtensionName, 0, 0,
|
||||
ProcXCMiscDispatch, SProcXCMiscDispatch,
|
||||
XCMiscResetProc, StandardMinorOpcode))
|
||||
XCMiscResetProc, StandardMinorOpcode);
|
||||
}
|
||||
|
||||
/*ARGSUSED*/
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include "dixstruct.h"
|
||||
#include "extnsionst.h"
|
||||
#include "swaprep.h"
|
||||
#include "registry.h"
|
||||
#include <X11/extensions/XResproto.h>
|
||||
#include "pixmapstr.h"
|
||||
#include "windowstr.h"
|
||||
|
|
|
@ -86,7 +86,7 @@ XTestExtensionInit(INITARGS)
|
|||
{
|
||||
AddExtension(XTestExtensionName, 0, 0,
|
||||
ProcXTestDispatch, SProcXTestDispatch,
|
||||
XTestResetProc, StandardMinorOpcode))
|
||||
XTestResetProc, StandardMinorOpcode);
|
||||
}
|
||||
|
||||
/*ARGSUSED*/
|
||||
|
|
Loading…
Reference in New Issue