test suite: suppress some Windows warnings (strlen)

This commit is contained in:
gitlost 2022-09-12 20:19:41 +01:00
parent d2664f8fc0
commit 3728dd9309
2 changed files with 23 additions and 23 deletions

View file

@ -119,7 +119,7 @@ static void test_csv(const testCtx *const p_ctx) {
strcat(data, "-");
strcat(data, routing_code);
assert_nonzero(strlen(data), "lc:%d strlen(data) == 0", lc);
assert_nonzero((int) strlen(data), "lc:%d strlen(data) == 0", lc);
symbol = ZBarcode_Create();
assert_nonnull(symbol, "Symbol not created\n");