]> git.eshelyaron.com Git - emacs.git/commitdiff
(xstricmp): String pointer args now point to const.
authorKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 19:49:19 +0000 (19:49 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Tue, 16 Jul 2002 19:49:19 +0000 (19:49 +0000)
src/xfaces.c

index 65ce504d27011f9a3c1cbf80f7f49ca5138ddd24..c6496aa1bd209a4acdd0d216f69021b7d25f7e76 100644 (file)
@@ -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)
     {