mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-24 23:00:05 +01:00
Remove 3 compiler warnings in the Xext/xevie.c file
This commit is contained in:
parent
e3c11f6651
commit
e5b72bd9c6
1 changed files with 1 additions and 3 deletions
|
|
@ -104,7 +104,7 @@ typedef struct {
|
|||
} xevieKeycQueueRec, *xevieKeycQueuePtr;
|
||||
|
||||
#define KEYC_QUEUE_SIZE 100
|
||||
xevieKeycQueueRec keycq[KEYC_QUEUE_SIZE] = {0, NULL};
|
||||
xevieKeycQueueRec keycq[KEYC_QUEUE_SIZE] = {{0, NULL}};
|
||||
static int keycqHead = 0, keycqTail = 0;
|
||||
|
||||
static int ProcDispatch (ClientPtr), SProcDispatch (ClientPtr);
|
||||
|
|
@ -165,7 +165,6 @@ void ResetProc (ExtensionEntry *extEntry)
|
|||
static
|
||||
int ProcQueryVersion (register ClientPtr client)
|
||||
{
|
||||
REQUEST (xXevieQueryVersionReq);
|
||||
xXevieQueryVersionReply rep;
|
||||
|
||||
REQUEST_SIZE_MATCH (xXevieQueryVersionReq);
|
||||
|
|
@ -181,7 +180,6 @@ int ProcQueryVersion (register ClientPtr client)
|
|||
static
|
||||
int ProcStart (register ClientPtr client)
|
||||
{
|
||||
REQUEST (xXevieStartReq);
|
||||
xXevieStartReply rep;
|
||||
|
||||
REQUEST_SIZE_MATCH (xXevieStartReq);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue