summaryrefslogtreecommitdiff
path: root/src/cos_stream_filter.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2018-02-08 23:43:19 +0000
committerVincent Sanders <vince@kyllikki.org>2018-02-08 23:43:19 +0000
commitd9bf14b9a1a5fa5770808c18d8039da0fb34021c (patch)
tree5d5c7941a852e137e624b341c79fb0f321d6506c /src/cos_stream_filter.c
parent24f990ef17253074f3d667a8d4c88efd2fb1d4f6 (diff)
downloadlibnspdf-d9bf14b9a1a5fa5770808c18d8039da0fb34021c.tar.gz
libnspdf-d9bf14b9a1a5fa5770808c18d8039da0fb34021c.tar.bz2
fix line width scaling
Diffstat (limited to 'src/cos_stream_filter.c')
-rw-r--r--src/cos_stream_filter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cos_stream_filter.c b/src/cos_stream_filter.c
index 0c08442..c12f641 100644
--- a/src/cos_stream_filter.c
+++ b/src/cos_stream_filter.c
@@ -105,7 +105,7 @@ nspdf__cos_stream_filter(struct nspdf_doc *doc,
nspdferror res;
//printf("applying filter %s\n", filter_name);
-
+ /** \todo implement all the other mandantory stream filters */
if (strcmp(filter_name, "FlateDecode") == 0) {
res = cos_stream_inflate(doc, stream_out);
} else {