summaryrefslogtreecommitdiff
path: root/stream/stm_filter.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2008-08-15 16:38:14 +0200
committerTor Andersson <tor@ghostscript.com>2008-08-15 16:38:14 +0200
commitbdcfc98006f17dbe748665d8e98006ab79250d4f (patch)
tree12f9a7f3404a16ed3e27eba57aded2da7ecdf3d9 /stream/stm_filter.c
parent04d6081ee6357ba0d0ce2a3281b6e651f10c8656 (diff)
downloadmupdf-bdcfc98006f17dbe748665d8e98006ab79250d4f.tar.xz
Update static instances of fz_error objects to the new non-refcounted form.
Diffstat (limited to 'stream/stm_filter.c')
-rw-r--r--stream/stm_filter.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/stm_filter.c b/stream/stm_filter.c
index 65b917d5..4260158e 100644
--- a/stream/stm_filter.c
+++ b/stream/stm_filter.c
@@ -1,9 +1,9 @@
#include "fitz-base.h"
#include "fitz-stream.h"
-fz_error fz_kioneedin = { -1, "<ioneedin>", "<internal>", "<internal>", 0, 0 };
-fz_error fz_kioneedout = { -1, "<ioneedout>", "<internal>", "<internal>", 0, 0 };
-fz_error fz_kiodone = { -1, "<iodone>", "<internal>", "<internal>", 0, 0 };
+fz_error fz_kioneedin = { "<ioneedin>", "<internal>", "<internal>", 0, nil };
+fz_error fz_kioneedout = { "<ioneedout>", "<internal>", "<internal>", 0, nil };
+fz_error fz_kiodone = { "<iodone>", "<internal>", "<internal>", 0, nil };
fz_error *
fz_process(fz_filter *f, fz_buffer *in, fz_buffer *out)