From: Ken Raeburn Date: Tue, 16 Jul 2002 19:49:19 +0000 (+0000) Subject: (xstricmp): String pointer args now point to const. X-Git-Tag: ttn-vms-21-2-B4~14040 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=23889aba6da5d471797ef5aa1269ae5601179676;p=emacs.git (xstricmp): String pointer args now point to const. --- diff --git a/src/xfaces.c b/src/xfaces.c index 65ce504d270..c6496aa1bd2 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -824,7 +824,7 @@ x_free_gc (f, gc) int xstricmp (s1, s2) - unsigned char *s1, *s2; + const unsigned char *s1, *s2; { while (*s1 && *s2) {