const cleanup
This commit is contained in:
parent
fe616f9230
commit
e6b1c1fada
|
@ -461,7 +461,7 @@ SetVendorString(char *string)
|
|||
VendorString = string;
|
||||
}
|
||||
|
||||
static int padlength[4] = {0, 3, 2, 1};
|
||||
static const int padlength[4] = {0, 3, 2, 1};
|
||||
|
||||
#ifndef PANORAMIX
|
||||
static
|
||||
|
|
|
@ -186,7 +186,7 @@ void QuartzInitInput(
|
|||
|
||||
#ifdef FAKE_RANDR
|
||||
|
||||
static int padlength[4] = {0, 3, 2, 1};
|
||||
static const int padlength[4] = {0, 3, 2, 1};
|
||||
|
||||
static void
|
||||
RREditConnectionInfo (ScreenPtr pScreen)
|
||||
|
|
4
os/io.c
4
os/io.c
|
@ -576,9 +576,7 @@ ResetCurrentRequest(ClientPtr client)
|
|||
}
|
||||
}
|
||||
|
||||
/* lookup table for adding padding bytes to data that is read from
|
||||
or written to the X socket. */
|
||||
static int padlength[4] = {0, 3, 2, 1};
|
||||
static const int padlength[4] = {0, 3, 2, 1};
|
||||
|
||||
/********************
|
||||
* FlushAllOutput()
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
#include "randrstr.h"
|
||||
|
||||
static int padlength[4] = {0, 3, 2, 1};
|
||||
static const int padlength[4] = {0, 3, 2, 1};
|
||||
|
||||
static CARD16
|
||||
RR10CurrentSizeID (ScreenPtr pScreen);
|
||||
|
|
Loading…
Reference in New Issue