diff options
| author | Ken Raeburn | 2002-07-16 19:49:19 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-07-16 19:49:19 +0000 |
| commit | 23889aba6da5d471797ef5aa1269ae5601179676 (patch) | |
| tree | 347b46cc98f4805cec0893a7297f3f27f0a6b880 /src | |
| parent | 50f80c2fbcdf1533ca88873ba3a807b487fb07ab (diff) | |
| download | emacs-23889aba6da5d471797ef5aa1269ae5601179676.tar.gz emacs-23889aba6da5d471797ef5aa1269ae5601179676.zip | |
(xstricmp): String pointer args now point to const.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 2 |
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 | ||
| 825 | int | 825 | int |
| 826 | xstricmp (s1, s2) | 826 | xstricmp (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 | { |