mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-18 19:52:21 +00:00
Static cleanups, dead code deletion.
This commit is contained in:
parent
ac2356843e
commit
9a0f25de7c
54 changed files with 187 additions and 482 deletions
|
|
@ -1,6 +1,4 @@
|
|||
/*
|
||||
* $Id$
|
||||
*
|
||||
* Copyright © 2006 Sun Microsystems
|
||||
*
|
||||
* Permission to use, copy, modify, distribute, and sell this software and its
|
||||
|
|
@ -55,10 +53,10 @@
|
|||
#define SERVER_XFIXES_MAJOR 4
|
||||
#define SERVER_XFIXES_MINOR 0
|
||||
|
||||
unsigned char XFixesReqCode;
|
||||
static unsigned char XFixesReqCode;
|
||||
int XFixesEventBase;
|
||||
int XFixesErrorBase;
|
||||
int XFixesClientPrivateIndex;
|
||||
static int XFixesClientPrivateIndex;
|
||||
|
||||
static int
|
||||
ProcXFixesQueryVersion(ClientPtr client)
|
||||
|
|
@ -169,7 +167,7 @@ SProcXFixesQueryVersion(ClientPtr client)
|
|||
return (*ProcXFixesVector[stuff->xfixesReqType]) (client);
|
||||
}
|
||||
|
||||
int (*SProcXFixesVector[XFixesNumberRequests])(ClientPtr) = {
|
||||
static int (*SProcXFixesVector[XFixesNumberRequests])(ClientPtr) = {
|
||||
/*************** Version 1 ******************/
|
||||
SProcXFixesQueryVersion,
|
||||
SProcXFixesChangeSaveSet,
|
||||
|
|
|
|||
Loading…
Reference in a new issue