summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-10-22 15:42:25 +0200
committerTor Andersson <tor.andersson@artifex.com>2018-10-23 18:46:01 +0200
commit7841391ae40d4c3e7719e4ec290e5c209ee23d17 (patch)
tree36464e7a1c5d236a53ce530db9b7c93c1171d37c /source
parent631eb78ceae1b15a27aac4be87ea06ad5ad0875b (diff)
downloadmupdf-7841391ae40d4c3e7719e4ec290e5c209ee23d17.tar.xz
Remove unused variables in output-pcl.c
Diffstat (limited to 'source')
-rw-r--r--source/fitz/output-pcl.c7
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;