diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2018-10-22 15:42:25 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2018-10-23 18:46:01 +0200 |
commit | 7841391ae40d4c3e7719e4ec290e5c209ee23d17 (patch) | |
tree | 36464e7a1c5d236a53ce530db9b7c93c1171d37c | |
parent | 631eb78ceae1b15a27aac4be87ea06ad5ad0875b (diff) | |
download | mupdf-7841391ae40d4c3e7719e4ec290e5c209ee23d17.tar.xz |
Remove unused variables in output-pcl.c
-rw-r--r-- | source/fitz/output-pcl.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/source/fitz/output-pcl.c b/source/fitz/output-pcl.c index 316c27b6..97ed2bb5 100644 --- a/source/fitz/output-pcl.c +++ b/source/fitz/output-pcl.c @@ -912,8 +912,6 @@ color_pcl_write_band(fz_context *ctx, fz_band_writer *writer_, int stride, int b int w = writer->super.w; int h = writer->super.h; int xres = writer->super.xres; - int yres = writer->super.yres; - int y = 0; int cw; int x; @@ -967,16 +965,12 @@ color_pcl_write_band(fz_context *ctx, fz_band_writer *writer_, int stride, int b static void color_pcl_write_trailer(fz_context *ctx, fz_band_writer *writer_) { - color_pcl_band_writer *writer = (color_pcl_band_writer *)writer_; - fz_output *out = writer->super.out; - } static void color_pcl_drop_band_writer(fz_context *ctx, fz_band_writer *writer_) { color_pcl_band_writer *writer = (color_pcl_band_writer *)writer_; - fz_free(ctx, writer->linebuf); } @@ -1189,7 +1183,6 @@ mono_pcl_write_band(fz_context *ctx, fz_band_writer *writer_, int ss, int band_s mono_pcl_band_writer *writer = (mono_pcl_band_writer *)writer_; fz_output *out = writer->super.out; int w = writer->super.w; - int h = writer->super.h; int yres = writer->super.yres; const unsigned char *out_data; int y, rmask, line_size; |