Fix gcc -Wwrite-strings warnings in xf86Modes code
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
parent
09e4b78f79
commit
632d205b30
|
@ -481,7 +481,7 @@ static void
|
|||
xf86OutputSetMonitor (xf86OutputPtr output)
|
||||
{
|
||||
char *option_name;
|
||||
char *monitor;
|
||||
const char *monitor;
|
||||
|
||||
if (!output->name)
|
||||
return;
|
||||
|
@ -561,7 +561,7 @@ xf86OutputIgnored (xf86OutputPtr output)
|
|||
return xf86ReturnOptValBool (output->options, OPTION_IGNORE, FALSE);
|
||||
}
|
||||
|
||||
static char *direction[4] = {
|
||||
static const char *direction[4] = {
|
||||
"normal",
|
||||
"left",
|
||||
"inverted",
|
||||
|
@ -3063,13 +3063,13 @@ xf86OutputGetEDID (xf86OutputPtr output, I2CBusPtr pDDCBus)
|
|||
return mon;
|
||||
}
|
||||
|
||||
static char *_xf86ConnectorNames[] = {
|
||||
static const char *_xf86ConnectorNames[] = {
|
||||
"None", "VGA", "DVI-I", "DVI-D",
|
||||
"DVI-A", "Composite", "S-Video",
|
||||
"Component", "LFP", "Proprietary",
|
||||
"HDMI", "DisplayPort",
|
||||
};
|
||||
char *
|
||||
const char *
|
||||
xf86ConnectorGetName(xf86ConnectorType connector)
|
||||
{
|
||||
return _xf86ConnectorNames[connector];
|
||||
|
|
|
@ -900,7 +900,7 @@ xf86CrtcSetScreenSubpixelOrder (ScreenPtr pScreen);
|
|||
/*
|
||||
* Get a standard string name for a connector type
|
||||
*/
|
||||
extern _X_EXPORT char *
|
||||
extern _X_EXPORT const char *
|
||||
xf86ConnectorGetName(xf86ConnectorType connector);
|
||||
|
||||
/*
|
||||
|
|
|
@ -230,7 +230,7 @@ static Bool quirk_dvi_single_link(int scrnIndex, xf86MonPtr DDC)
|
|||
typedef struct {
|
||||
Bool (*detect) (int scrnIndex, xf86MonPtr DDC);
|
||||
ddc_quirk_t quirk;
|
||||
char *description;
|
||||
const char *description;
|
||||
} ddc_quirk_map_t;
|
||||
|
||||
static const ddc_quirk_map_t ddc_quirks[] = {
|
||||
|
|
|
@ -272,7 +272,7 @@ xf86ModesEqual(const DisplayModeRec *pMode1, const DisplayModeRec *pMode2)
|
|||
}
|
||||
|
||||
static void
|
||||
add(char **p, char *new)
|
||||
add(char **p, const char *new)
|
||||
{
|
||||
*p = xnfrealloc(*p, strlen(*p) + strlen(new) + 2);
|
||||
strcat(*p, " ");
|
||||
|
@ -599,7 +599,7 @@ xf86PruneInvalidModes(ScrnInfoPtr pScrn, DisplayModePtr *modeList,
|
|||
|
||||
if (mode->status != MODE_OK) {
|
||||
if (verbose) {
|
||||
char *type = "";
|
||||
const char *type = "";
|
||||
if (mode->type & M_T_BUILTIN)
|
||||
type = "built-in ";
|
||||
else if (mode->type & M_T_DEFAULT)
|
||||
|
|
Loading…
Reference in New Issue