ports/x11-drivers/xf86-video-sis/files/patch-src_initextx.c
Niclas Zeising 6b1bf6ebc3 x11-drivers/xf86-video-sis: Update to 0.11.0
Update x11-drivers/xf86-video-sis to 0.11.0
Remove dependency on mesa and libGL, it is not used
Add license information
This is a maintenance release
This has not been tested with actual hardware.

Changelog:
https://lists.x.org/archives/xorg-announce/2019-July/003016.html

Obtained from:	FreeBSD Graphics Team development repo
		https://github.com/FreeBSDDesktop/freebsd-ports/tree/feature/xorglibs
2019-08-18 14:45:06 +00:00

34 lines
1.1 KiB
C

# Cast away warnings filling const strings
#
--- src/initextx.c.orig 2019-07-26 23:38:52 UTC
+++ src/initextx.c
@@ -252,7 +252,7 @@ SiSBuildBuiltInModeList(ScrnInfoPtr pScrn, BOOLEAN inc
current = new;
- sprintf(current->name, "%hu%hu", pSiS->SiS_Pr->SiS_RefIndex[i].XRes,
+ sprintf((char *)current->name, "%hu%hu", pSiS->SiS_Pr->SiS_RefIndex[i].XRes,
pSiS->SiS_Pr->SiS_RefIndex[i].YRes);
current->status = MODE_OK;
@@ -402,7 +402,7 @@ SiSBuildBuiltInModeList(ScrnInfoPtr pScrn, BOOLEAN inc
pSiS->AddedPlasmaModes = TRUE;
- strcpy(current->name, SiS_PlasmaMode[l].name);
+ strcpy((char *)current->name, SiS_PlasmaMode[l].name);
current->status = MODE_OK;
@@ -485,8 +485,8 @@ SiSBuildBuiltInModeList(ScrnInfoPtr pScrn, BOOLEAN inc
current = new;
- sprintf(current->name, "%dx%d", pSiS->SiS_Pr->CP_HDisplay[i],
- pSiS->SiS_Pr->CP_VDisplay[i]);
+ sprintf((char *)current->name, "%dx%d", pSiS->SiS_Pr->CP_HDisplay[i],
+ pSiS->SiS_Pr->CP_VDisplay[i]);
current->status = MODE_OK;