[vlc-devel] commit: Fix strcasestr replacement ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat Apr 11 20:04:57 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Apr 11 20:59:13 2009 +0300| [4385b3b0409a60fb327205217c7d211e40f351f7] | committer: Rémi Denis-Courmont
Fix strcasestr replacement
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4385b3b0409a60fb327205217c7d211e40f351f7
---
compat/strcasestr.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/compat/strcasestr.c b/compat/strcasestr.c
index 45b8830..e01e5c3 100644
--- a/compat/strcasestr.c
+++ b/compat/strcasestr.c
@@ -26,7 +26,7 @@
#include <ctype.h>
#include <assert.h>
-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;
More information about the vlc-devel
mailing list