From 612fe33e9d681a14c69e281b61dbb40069fd8dfc Mon Sep 17 00:00:00 2001 From: Andrey Kiselev Date: Thu, 12 Jul 2007 17:32:53 +0000 Subject: [PATCH] Mapping routines definitions fixed. --- tools/tiff2pdf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/tiff2pdf.c b/tools/tiff2pdf.c index 1b5e34a1..740ad4c7 100644 --- a/tools/tiff2pdf.c +++ b/tools/tiff2pdf.c @@ -1,4 +1,4 @@ -/* $Id: tiff2pdf.c,v 1.42 2007-07-12 17:25:12 dron Exp $ +/* $Id: tiff2pdf.c,v 1.43 2007-07-12 17:32:53 dron Exp $ * * tiff2pdf - converts a TIFF image to a PDF document * @@ -402,14 +402,14 @@ t2p_sizeproc(thandle_t handle) } static int -t2p_mapproc(thandle_t handle, void **data, tmsize_t *offset) +t2p_mapproc(thandle_t handle, void **data, toff_t *offset) { (void) handle, (void) data, (void) offset; return -1; } static void -t2p_unmapproc(thandle_t handle, void *data, tmsize_t offset) +t2p_unmapproc(thandle_t handle, void *data, toff_t offset) { (void) handle, (void) data, (void) offset; }