Index: xftglyphs.c =================================================================== RCS file: /cvs/xlibs/Xft/xftglyphs.c,v retrieving revision 1.29 diff -u -r1.29 xftglyphs.c --- xftglyphs.c 2 Mar 2005 05:32:14 -0000 1.29 +++ xftglyphs.c 7 Mar 2005 11:19:07 -0000 @@ -426,7 +426,7 @@ { if (font->info.antialias) { - static char den[] = { " .:;=+*#" }; + static const char den[] = { " .:;=+*#" }; for (x = 0; x < pitch; x++) printf ("%c", den[line[x] >> 5]); } Index: xftinit.c =================================================================== RCS file: /cvs/xlibs/Xft/xftinit.c,v retrieving revision 1.7 diff -u -r1.7 xftinit.c --- xftinit.c 15 Apr 2004 01:45:47 -0000 1.7 +++ xftinit.c 7 Mar 2005 11:19:07 -0000 @@ -60,7 +60,7 @@ static int XftAllocCount, XftAllocMem; static int XftFreeCount, XftFreeMem; -static int XftMemNotice = 1*1024*1024; +static const int XftMemNotice = 1*1024*1024; static int XftAllocNotify, XftFreeNotify;