diff options
author | Ralph Giles <giles@ghostscript.com> | 2009-08-19 18:43:19 +0200 |
---|---|---|
committer | Ralph Giles <giles@ghostscript.com> | 2009-08-19 18:43:19 +0200 |
commit | e3e42a06b2226beadfa8c9a471753d464e5e5aa8 (patch) | |
tree | eec732d4b4693e56fb824436189dfbe06f06115c /fitz/filt_copy.c | |
parent | e70e153f8fda0b65360beeea52409b6c543e7e24 (diff) | |
download | mupdf-e3e42a06b2226beadfa8c9a471753d464e5e5aa8.tar.xz |
Remove some unused variables.
fz_processcopyfilter() doesn't use it's first argument at all. I don't
know if the argument itself can be removed. If not, this patch will
just exchange an unused variable warning for an unused argument warning,
although the later isn't expressed in the jam build.
Diffstat (limited to 'fitz/filt_copy.c')
-rw-r--r-- | fitz/filt_copy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fitz/filt_copy.c b/fitz/filt_copy.c index f6a00ec0..6c77ff17 100644 --- a/fitz/filt_copy.c +++ b/fitz/filt_copy.c @@ -23,7 +23,6 @@ fz_dropcopyfilter(fz_filter *f) fz_error fz_processcopyfilter(fz_filter *filter, fz_buffer *in, fz_buffer *out) { - fz_copyfilter *f = (fz_copyfilter*)filter; int n; while (1) |