mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-12-23 21:46:24 +01:00
Fix the unsupported filter error message (Issue #130)
This commit is contained in:
@@ -26,6 +26,7 @@ v1.6.0 - YYYY-MM-DD
|
|||||||
v1.5.5 - 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 EOF comment written to the PDF (Issue #136)
|
||||||
- Fixed TTF cmap underflow error.
|
- Fixed TTF cmap underflow error.
|
||||||
- Fixed some Clang warnings.
|
- Fixed some Clang warnings.
|
||||||
|
|||||||
@@ -623,7 +623,7 @@ _pdfioStreamOpen(pdfio_obj_t *obj, // I - Object
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Something else we don't support
|
// Something else we don't support
|
||||||
_pdfioFileError(st->pdf, "Unsupported stream filter '%N'.", filter);
|
_pdfioFileError(st->pdf, "Unsupported stream filter '/%s'.", filter);
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user