summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDarren Salt <linux@youmustbejoking.demon.co.uk>2007-07-08 15:40:40 +0100
committerDarren Salt <linux@youmustbejoking.demon.co.uk>2007-07-08 15:40:40 +0100
commit35a0310f9c67e357a3dc8ea3420ec6d25dd2aad9 (patch)
treee97cbd2454dbe85f17e9e708651151d9b4767911 /lib
parentcaf1060d009128fa2526bd238b4746acdaeb5d64 (diff)
parent425fa4b12abcf5d04544215aeae58b4af3cee24b (diff)
downloadxine-lib-35a0310f9c67e357a3dc8ea3420ec6d25dd2aad9.tar.gz
xine-lib-35a0310f9c67e357a3dc8ea3420ec6d25dd2aad9.tar.bz2
Merge from 1.1.
Diffstat (limited to 'lib')
-rw-r--r--lib/memmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/memmem.c b/lib/memmem.c
index 1cbe629bd..75a989d94 100644
--- a/lib/memmem.c
+++ b/lib/memmem.c
@@ -21,7 +21,7 @@
#include <string.h>
/* Return the first occurrence of NEEDLE in HAYSTACK. */
-void *xine_internal_memmem (const void *haystack, size_t haystack_len,
+void *xine_private_memmem (const void *haystack, size_t haystack_len,
const void *needle, size_t needle_len)
{
const char *begin;