From 23889aba6da5d471797ef5aa1269ae5601179676 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 16 Jul 2002 19:49:19 +0000 Subject: [PATCH] (xstricmp): String pointer args now point to const. --- src/xfaces.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.2