summaryrefslogtreecommitdiff
path: root/fitz/filt_jpxd.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2009-03-11 15:59:50 +0100
committerTor Andersson <tor@ghostscript.com>2009-03-11 15:59:50 +0100
commit31733cfd3ba1a920542da3792f2591cf7ba5f62a (patch)
tree64a6751de8e6c171bfaa334188623a7134c285d2 /fitz/filt_jpxd.c
parentb3092ce4920ea6456788a595c5dd9a794f79eed6 (diff)
downloadmupdf-31733cfd3ba1a920542da3792f2591cf7ba5f62a.tar.xz
Change fz_error* struct into an integer error type fz_error.
Diffstat (limited to 'fitz/filt_jpxd.c')
-rw-r--r--fitz/filt_jpxd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fitz/filt_jpxd.c b/fitz/filt_jpxd.c
index 35323e29..eb940c93 100644
--- a/fitz/filt_jpxd.c
+++ b/fitz/filt_jpxd.c
@@ -34,7 +34,7 @@ struct fz_jpxd_s
int stage;
};
-fz_error *
+fz_error
fz_newjpxd(fz_filter **fp, fz_obj *params)
{
int err;
@@ -70,7 +70,7 @@ fz_dropjpxd(fz_filter *filter)
if (d->image) jas_image_destroy(d->image);
}
-fz_error *
+fz_error
fz_processjpxd(fz_filter *filter, fz_buffer *in, fz_buffer *out)
{
fz_jpxd *d = (fz_jpxd*)filter;