mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-27 13:34:19 -04:00
test suite: suppress some Windows warnings (strlen)
This commit is contained in:
parent
d2664f8fc0
commit
3728dd9309
2 changed files with 23 additions and 23 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue