[mapserver-commits] r13061 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Mon Feb 6 14:15:56 EST 2012


Author: tbonfort
Date: 2012-02-06 11:15:56 -0800 (Mon, 06 Feb 2012)
New Revision: 13061

Modified:
   trunk/mapserver/mapcairo.c
Log:
fix const char* compiler warning 


Modified: trunk/mapserver/mapcairo.c
===================================================================
--- trunk/mapserver/mapcairo.c	2012-02-06 19:14:52 UTC (rev 13060)
+++ trunk/mapserver/mapcairo.c	2012-02-06 19:15:56 UTC (rev 13061)
@@ -147,7 +147,7 @@
 }
 
 
-faceCacheObj *getFontFace(cairoCacheData *cache, char *font) {
+faceCacheObj *getFontFace(cairoCacheData *cache, const char *font) {
     faceCacheObj *newface = NULL;
     faceCacheObj *cur=cache->facecache;
     while(cur) {



More information about the mapserver-commits mailing list