aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Raeburn2002-07-16 19:49:19 +0000
committerKen Raeburn2002-07-16 19:49:19 +0000
commit23889aba6da5d471797ef5aa1269ae5601179676 (patch)
tree347b46cc98f4805cec0893a7297f3f27f0a6b880 /src
parent50f80c2fbcdf1533ca88873ba3a807b487fb07ab (diff)
downloademacs-23889aba6da5d471797ef5aa1269ae5601179676.tar.gz
emacs-23889aba6da5d471797ef5aa1269ae5601179676.zip
(xstricmp): String pointer args now point to const.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
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)
824 824
825int 825int
826xstricmp (s1, s2) 826xstricmp (s1, s2)
827 unsigned char *s1, *s2; 827 const unsigned char *s1, *s2;
828{ 828{
829 while (*s1 && *s2) 829 while (*s1 && *s2)
830 { 830 {