diff options
author | knielsen@mysql.com <> | 2006-05-02 09:19:54 +0200 |
---|---|---|
committer | knielsen@mysql.com <> | 2006-05-02 09:19:54 +0200 |
commit | f0341ac431cc925ab64e0dd59581a3461a38f0e6 (patch) | |
tree | 344e142a1552ff36726a9f213f672836202a643a /mysys/my_memmem.c | |
parent | aaf2c26e015b911da2e394dd3aa1b792d2ae855e (diff) | |
download | mariadb-git-f0341ac431cc925ab64e0dd59581a3461a38f0e6.tar.gz |
Fix a bunch of non-Linux compile failures.
Diffstat (limited to 'mysys/my_memmem.c')
-rw-r--r-- | mysys/my_memmem.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysys/my_memmem.c b/mysys/my_memmem.c index 3a71d39c262..682a1314f09 100644 --- a/mysys/my_memmem.c +++ b/mysys/my_memmem.c @@ -9,8 +9,9 @@ void *my_memmem(const void *haystack, size_t haystacklen, const void *needle, size_t needlelen) { - const void *cursor; - const void *last_possible_needle_location = haystack + haystacklen - needlelen; + const unsigned char *cursor; + const unsigned char *last_possible_needle_location = + (unsigned char *)haystack + haystacklen - needlelen; /* Easy answers */ if (needlelen > haystacklen) return(NULL); |