summaryrefslogtreecommitdiff
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-08-06 16:12:59 -0700
commitb61ee18b72d8b2c2d21ca68dc8566a09a76683fb (patch)
tree01d9efc97e4b29df5c93ba95269a4a25f95b70e9
parentb5932f176c1abffbe75d03b706a2f04a7ef1e5a0 (diff)
Make xstrcasestr prototype return value match the implementation
(cherry picked from 3b687ffe1649449b3d182f5e7690274c6c96916a commit)
-rw-r--r--include/dix.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dix.h b/include/dix.h
index ea83e1161..64035fec7 100644
--- a/include/dix.h
+++ b/include/dix.h
@@ -566,7 +566,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
/*