Changeset: ad6067b2c847 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/ad6067b2c847 Modified Files: monetdb5/modules/atoms/str.c Branch: txtsim Log Message:
small compilation fix diffs (12 lines): diff --git a/monetdb5/modules/atoms/str.c b/monetdb5/modules/atoms/str.c --- a/monetdb5/modules/atoms/str.c +++ b/monetdb5/modules/atoms/str.c @@ -4823,7 +4823,7 @@ str_locate2(const char *needle, const ch off = start <= 0 ? 1 : start; s = UTF8_strtail(haystack, off - 1); - res = str_search(s, needle, strlen(needle)); + res = str_search(s, needle, str_strlen(needle)); return res >= 0 ? res + off : 0; } _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org