From d8fb0709843fc8655a669671a688a459769aa518 Mon Sep 17 00:00:00 2001 From: Clemens Fries Date: Mon, 5 Oct 2020 19:03:20 +0200 Subject: rastertoql570.c: Remove unused parameter from handle_page() --- src/rastertoql570.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/rastertoql570.c') diff --git a/src/rastertoql570.c b/src/rastertoql570.c index f2c3fa1..07a696e 100644 --- a/src/rastertoql570.c +++ b/src/rastertoql570.c @@ -64,7 +64,7 @@ main(__attribute__((unused)) int argc, __attribute__((unused)) char** argv) unsigned int page_counter = 0; while (cupsRasterReadHeader2(raster, &header)) { - handle_page(raster, header, status, page_counter, fout); + handle_page(raster, header, page_counter, fout); page_counter++; // Printing this information will also end up on the jobs page @@ -88,7 +88,7 @@ main(__attribute__((unused)) int argc, __attribute__((unused)) char** argv) * */ void -handle_page(cups_raster_t *raster, cups_page_header2_t header, ql_status status, unsigned int page_counter, FILE *fout) +handle_page(cups_raster_t *raster, cups_page_header2_t header, unsigned int page_counter, FILE *fout) { /* // TODO: Support some safety option for testing. if( header.cupsHeight > 900 ) -- cgit