README: update links, explicit link to tickets (& put before mailing list)

test_library: fix Windows warning
This commit is contained in:
gitlost 2022-07-04 13:19:07 +01:00
parent 471aed7a69
commit f0fc8f9fae
2 changed files with 9 additions and 6 deletions

13
README
View File

@ -33,17 +33,20 @@ CONTACT US
---------- ----------
The home of Zint is: The home of Zint is:
<http://www.sourceforge.net/projects/zint> <https://sourceforge.net/p/zint/>
The code is now also mirrored at: The code is now also mirrored at:
<https://github.com/woo-j/zint> <https://github.com/zint/zint>
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
<https://lists.sourceforge.net/lists/listinfo/zint-barcode> <https://sourceforge.net/p/zint/tickets/>
or add a ticket on the project's SourceForge. or join the mailing list at
<https://sourceforge.net/projects/zint/lists/zint-barcode>
BEFORE POSTING TO THE LIST BEFORE POSTING TO THE LIST

View File

@ -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", 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, 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].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); testUtilErrorName(data[i].ret), symbol->width, symbol->errtxt, data[i].compare_previous, data[i].comment);
} else { } else {
assert_zero(strcmp(symbol->errtxt, data[i].expected), "i:%d strcmp(%s, %s) != 0\n", i, symbol->errtxt, data[i].expected); assert_zero(strcmp(symbol->errtxt, data[i].expected), "i:%d strcmp(%s, %s) != 0\n", i, symbol->errtxt, data[i].expected);