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

Add identifiers to error messages

To ease the debug process
This commit is contained in:
Robin Stuart
2016-10-28 22:40:40 +01:00
parent 5405035df1
commit 4561a66067
35 changed files with 296 additions and 298 deletions

View File

@@ -286,7 +286,7 @@ int gif_pixel_plot(struct zint_symbol *symbol, char *pixelbuf) {
gif_file = stdout;
} else {
if (!(gif_file = fopen(symbol->outfile, "wb"))) {
strcpy(symbol->errtxt, "Can't open output file");
strcpy(symbol->errtxt, "Can't open output file (F10)");
return ZINT_ERROR_FILE_ACCESS;
}
}