From 71f3316f5b1a067239fc5ac5784e40a5771343c3 Mon Sep 17 00:00:00 2001 From: hooper114 Date: Wed, 15 Oct 2008 21:00:10 +0000 Subject: [PATCH] Fix another simple Code 128 bug (not enough room for text) --- backend/library.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/library.c b/backend/library.c index a3a9d298..1d9ade67 100644 --- a/backend/library.c +++ b/backend/library.c @@ -46,7 +46,7 @@ struct zint_symbol *ZBarcode_Create() symbol->option_2 = 0; symbol->option_3 = 928; // PDF_MAX strcpy(symbol->primary, ""); - for(i = 0; i < 90; i++) { + for(i = 0; i < 178; i++) { for(j = 0; j < 1000; j++) { symbol->encoded_data[i][j] = '0'; } @@ -272,6 +272,7 @@ int ZBarcode_Encode(struct zint_symbol *symbol, unsigned char *input) error_number = error_buffer; } error_tag(symbol->errtxt, error_number); + printf("%s\n",symbol->text); return error_number; }