From f0fc8f9faecdaa98d8b2dc73234bdcb19cc6dbdc Mon Sep 17 00:00:00 2001 From: gitlost Date: Mon, 4 Jul 2022 13:19:07 +0100 Subject: [PATCH] README: update links, explicit link to tickets (& put before mailing list) test_library: fix Windows warning --- README | 13 ++++++++----- backend/tests/test_library.c | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README b/README index aed53f82..a732ed89 100644 --- a/README +++ b/README @@ -33,17 +33,20 @@ CONTACT US ---------- The home of Zint is: - + The code is now also mirrored at: - + -For feature requests or bug reports please either join the mailing list at +For feature requests or bug reports please either add a ticket on the project's +SourceForge page - + -or add a ticket on the project's SourceForge. +or join the mailing list at + + BEFORE POSTING TO THE LIST diff --git a/backend/tests/test_library.c b/backend/tests/test_library.c index ca49b38e..18db0985 100644 --- a/backend/tests/test_library.c +++ b/backend/tests/test_library.c @@ -585,7 +585,7 @@ static void test_escape_char_process(int index, int generate, int debug) { printf(" /*%3d*/ { %s, %s, %d, \"%s\", \"%s\", %s, %d, \"%s\", %d, \"%s\" },\n", i, testUtilBarcodeName(data[i].symbology), testUtilInputModeName(data[i].input_mode), data[i].eci, testUtilEscape(data[i].data, length, escaped, ARRAY_SIZE(escaped)), - testUtilEscape(data[i].composite, strlen(data[i].composite), escaped_composite, ARRAY_SIZE(escaped_composite)), + testUtilEscape(data[i].composite, (int) strlen(data[i].composite), escaped_composite, ARRAY_SIZE(escaped_composite)), testUtilErrorName(data[i].ret), symbol->width, symbol->errtxt, data[i].compare_previous, data[i].comment); } else { assert_zero(strcmp(symbol->errtxt, data[i].expected), "i:%d strcmp(%s, %s) != 0\n", i, symbol->errtxt, data[i].expected);