const cleanup
This commit is contained in:
parent
fe616f9230
commit
e6b1c1fada
|
@ -461,7 +461,7 @@ SetVendorString(char *string)
|
||||||
VendorString = string;
|
VendorString = string;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int padlength[4] = {0, 3, 2, 1};
|
static const int padlength[4] = {0, 3, 2, 1};
|
||||||
|
|
||||||
#ifndef PANORAMIX
|
#ifndef PANORAMIX
|
||||||
static
|
static
|
||||||
|
|
|
@ -186,7 +186,7 @@ void QuartzInitInput(
|
||||||
|
|
||||||
#ifdef FAKE_RANDR
|
#ifdef FAKE_RANDR
|
||||||
|
|
||||||
static int padlength[4] = {0, 3, 2, 1};
|
static const int padlength[4] = {0, 3, 2, 1};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
RREditConnectionInfo (ScreenPtr pScreen)
|
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
|
static const int padlength[4] = {0, 3, 2, 1};
|
||||||
or written to the X socket. */
|
|
||||||
static int padlength[4] = {0, 3, 2, 1};
|
|
||||||
|
|
||||||
/********************
|
/********************
|
||||||
* FlushAllOutput()
|
* FlushAllOutput()
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
#include "randrstr.h"
|
#include "randrstr.h"
|
||||||
|
|
||||||
static int padlength[4] = {0, 3, 2, 1};
|
static const int padlength[4] = {0, 3, 2, 1};
|
||||||
|
|
||||||
static CARD16
|
static CARD16
|
||||||
RR10CurrentSizeID (ScreenPtr pScreen);
|
RR10CurrentSizeID (ScreenPtr pScreen);
|
||||||
|
|
Loading…
Reference in New Issue