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 /randr/randr.c | |
parent | 6bcde69585fcc8f8dbfe81c115649f19274922fa (diff) |
Remove all empty extension reset hooks, replace with NULL.
Diffstat (limited to 'randr/randr.c')
-rw-r--r-- | randr/randr.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/randr/randr.c b/randr/randr.c index bc2b995d2..9bfed0529 100644 --- a/randr/randr.c +++ b/randr/randr.c @@ -86,11 +86,6 @@ RRClientCallback (CallbackListPtr *list, } } -static void -RRResetProc (ExtensionEntry *extEntry) -{ -} - static Bool RRCloseScreen (int i, ScreenPtr pScreen) { @@ -339,7 +334,7 @@ RRExtensionInit (void) return; extEntry = AddExtension (RANDR_NAME, RRNumberEvents, RRNumberErrors, ProcRRDispatch, SProcRRDispatch, - RRResetProc, StandardMinorOpcode); + NULL, StandardMinorOpcode); if (!extEntry) return; RRErrorBase = extEntry->errorBase; |