diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-12-12 16:49:34 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-12-12 17:03:10 -0800 |
commit | d5a5eece670dee963765eab1431c21525c16d9ee (patch) | |
tree | 7ec3c57b2a7eec96e1589d3a1a57061b0a0c3531 /dix/dixutils.c | |
parent | 83ac9502ea9f1dedf3a8002745668af16bb1f2af (diff) |
CompareISOLatin1Lowered: constify arguments
Allows callers to avoid deconstifying arguments when calling, fixing
gcc warning:
filter.c: In function 'PictureGetFilterId':
filter.c:59:2: warning: cast discards qualifiers from pointer target type
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Jamey Sharp <jamey@minilop.net>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'dix/dixutils.c')
-rw-r--r-- | dix/dixutils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dix/dixutils.c b/dix/dixutils.c index 1e3134663..00bbde67c 100644 --- a/dix/dixutils.c +++ b/dix/dixutils.c @@ -167,8 +167,8 @@ ISOLatin1ToLower (unsigned char source) int -CompareISOLatin1Lowered(unsigned char *s1, int s1len, - unsigned char *s2, int s2len) +CompareISOLatin1Lowered(const unsigned char *s1, int s1len, + const unsigned char *s2, int s2len) { unsigned char c1, c2; |