mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
3f87b5cb51
Update xf86-video-ati to 7.8.0 Update xf86-video-intel to 2.99.917.20170103 Update xf86-input-synaptics to 1.9.0 Update xf86-input-evdev to 2.10.5 Update xf86-video-r128 to 6.10.2 Update xf86-video-rendition to 4.2.6 New port: xf86-video-geode PR: 214591,216269,214687,214593,214715,216276,216277,216278,216287, 216288,216292,216298,214560,216299,216300,216301,216302 Approved by: swills (mentor, portmgr) Differential Revision: https://reviews.freebsd.org/D9436
14 lines
410 B
C
14 lines
410 B
C
# Correct a string that should be const
|
|
#
|
|
--- src/rendition.c.orig 2014-09-30 14:21:44 UTC
|
|
+++ src/rendition.c
|
|
@@ -480,7 +480,7 @@ renditionPreInit(ScrnInfoPtr pScreenInfo
|
|
MessageType From;
|
|
int videoRam, Rounding, nModes = 0;
|
|
renditionPtr pRendition;
|
|
- char *in_string;
|
|
+ const char *in_string;
|
|
vgaHWPtr pvgaHW;
|
|
|
|
#ifdef DEBUG
|