From 798aaf5adcc326ff96823be918452f01a29e0449 Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Wed, 12 Oct 2016 11:44:35 +0100 Subject: Change code from using bandheight to using band_height. Keep to our naming conventions. --- source/fitz/bitmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/fitz/bitmap.c') diff --git a/source/fitz/bitmap.c b/source/fitz/bitmap.c index 46cfa533..f26cf935 100644 --- a/source/fitz/bitmap.c +++ b/source/fitz/bitmap.c @@ -346,7 +346,7 @@ fz_write_bitmap_as_pkm(fz_context *ctx, fz_output *out, fz_bitmap *bitmap) } static void -pbm_write_band(fz_context *ctx, fz_band_writer *writer, int stride, int band_start, int bandheight, const unsigned char *p) +pbm_write_band(fz_context *ctx, fz_band_writer *writer, int stride, int band_start, int band_height, const unsigned char *p) { fz_output *out = writer->out; int w = writer->w; @@ -366,7 +366,7 @@ pbm_write_band(fz_context *ctx, fz_band_writer *writer, int stride, int band_sta } static void -pkm_write_band(fz_context *ctx, fz_band_writer *writer, int stride, int band_start, int bandheight, const unsigned char *p) +pkm_write_band(fz_context *ctx, fz_band_writer *writer, int stride, int band_start, int band_height, const unsigned char *p) { fz_output *out = writer->out; int w = writer->w; -- cgit v1.2.3