Changeset: 23394a54cddf for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/23394a54cddf
Modified Files:
monetdb5/modules/atoms/str.c
Branch: sw_ew_c_sorting
Log Message:
Avoid strrev naming and fix windows issue
diffs (21 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
@@ -5606,7 +5606,7 @@ STRcontainsselect(Client cntxt, MalBlkPt
} while (0)
static void
-strrev(char *dst, const char *src, size_t len)
+do_strrev(char *dst, const char *src, size_t len)
{
dst[len] = 0;
if (strNil(src)) {
@@ -5689,7 +5689,7 @@ batstr_strrev(BAT **r, BAT *b)
}
dst = ndst;
}
- strrev(dst, src, len);
+ do_strrev(dst, src, len);
if (BUNappend(bn, dst, false) != GDK_SUCCEED) {
bat_iterator_end(&bi);
BBPreclaim(bn);
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]