From: RĂ©mi Denis-Courmont Date: Sat, 11 Apr 2009 17:59:13 +0000 (+0300) Subject: Fix strcasestr replacement X-Git-Tag: 1.0.0-pre2~107 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=4385b3b0409a60fb327205217c7d211e40f351f7;p=vlc Fix strcasestr replacement --- diff --git a/compat/strcasestr.c b/compat/strcasestr.c index 45b8830b51..e01e5c39ac 100644 --- a/compat/strcasestr.c +++ b/compat/strcasestr.c @@ -26,7 +26,7 @@ #include #include -int strcasecmp (const char *psz_big, const char *psz_little) +char *strcasestr (const char *psz_big, const char *psz_little) { char *p_pos = (char *)psz_big;