From 670000b7ea0ad3d8a5682fa54f411d2082805485 Mon Sep 17 00:00:00 2001 From: Robin Stuart Date: Sun, 24 Dec 2017 14:51:12 +0000 Subject: [PATCH] Improve wording of error 227 Fixes #87 reported by Ken Yap --- backend/library.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/library.c b/backend/library.c index 2033e59a..6e4b9824 100644 --- a/backend/library.c +++ b/backend/library.c @@ -1245,7 +1245,7 @@ int ZBarcode_Print(struct zint_symbol *symbol, int rotate_angle) { if (error_number == ZINT_ERROR_INVALID_OPTION) { /* If libpng is not installed */ - strcpy(symbol->errtxt, "227: Unknown output format"); + strcpy(symbol->errtxt, "227: No PNG support - compile with libpng-devel to resolve"); } error_tag(symbol->errtxt, error_number);