1
0
mirror of https://git.code.sf.net/p/zint/code synced 2026-01-11 14:06:01 +00:00

Suppress gcc-15 warning -Wunterminated-string-initialization

ci: macOS: try GS1 Syntax Engine agin
This commit is contained in:
gitlost
2025-09-12 22:49:28 +01:00
parent 7bccfc4915
commit 008dff4aec
4 changed files with 7 additions and 4 deletions

View File

@@ -513,7 +513,7 @@ INTERNAL int zint_datamatrix(struct zint_symbol *symbol, struct zint_seg segs[],
/* Royal Mail 2D Mailmark (CMDM) (Data Matrix) */
/* https://www.royalmailtechnical.com/rmt_docs/User_Guides_2021/Mailmark_Barcode_definition_document_20210215.pdf */
INTERNAL int zint_mailmark_2d(struct zint_symbol *symbol, unsigned char source[], int length) {
static const char spaces[9] = " ";
static const char spaces[9] = { ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ' };
unsigned char local_source[90 + 1];
char postcode[10];
int i;