mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-20 10:15:10 -04:00
test_output: fix MSVC warning strlen() -> int
This commit is contained in:
parent
ff18ff1cbc
commit
5499e9d71f
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ static void test_fopen(const testCtx *const p_ctx) {
|
|||
if (testContinue(p_ctx, i)) continue;
|
||||
|
||||
strcpy(outfile, cwdbuf);
|
||||
len = strlen(outfile);
|
||||
len = (int) strlen(outfile);
|
||||
if (len && outfile[len - 1] != TEST_OUT_SEP) { outfile[len++] = TEST_OUT_SEP; outfile[len] = '\0'; }
|
||||
dir_exists = subdir_exists = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue