summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@sun.com>2008-07-17 18:16:59 -0700
committerAlan Coopersmith <alan.coopersmith@sun.com>2008-07-17 18:16:59 -0700
commit3b687ffe1649449b3d182f5e7690274c6c96916a (patch)
tree5074cc03420a8d5155bea7d08fa5e3a6dd5bb0d1 /include
parentf7bfa4ae971b43c3ed81cc84e6d1e071c413f04c (diff)
Make xstrcasestr prototype return value match the implementation
Diffstat (limited to 'include')
-rw-r--r--include/dix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dix.h b/include/dix.h
index ac03ce0e9..fcb24888b 100644
--- a/include/dix.h
+++ b/include/dix.h
@@ -611,7 +611,7 @@ extern int xstrncasecmp(const char *s1, const char *s2, size_t n);
#if NEED_STRCASESTR
#define strcasestr xstrcasestr
-extern int xstrcasestr(const char *s, const char *find);
+extern char *xstrcasestr(const char *s, const char *find);
#endif
extern int XItoCoreType(int xi_type);