Fix the unsupported filter error message (Issue #130)

This commit is contained in:
Michael R Sweet
2025-09-30 19:48:30 -04:00
parent da58eec96d
commit 4032eef826
2 changed files with 2 additions and 1 deletions

View File

@@ -26,6 +26,7 @@ v1.6.0 - YYYY-MM-DD
v1.5.5 - YYYY-MM-DD
-------------------
- Fixed unsupported filter error (Issue #130)
- Fixed EOF comment written to the PDF (Issue #136)
- Fixed TTF cmap underflow error.
- Fixed some Clang warnings.

View File

@@ -623,7 +623,7 @@ _pdfioStreamOpen(pdfio_obj_t *obj, // I - Object
else
{
// Something else we don't support
_pdfioFileError(st->pdf, "Unsupported stream filter '%N'.", filter);
_pdfioFileError(st->pdf, "Unsupported stream filter '/%s'.", filter);
goto error;
}
}