* libtiff/tif_stream.cxx: Fix warnings about unused parameters.

This commit is contained in:
Bob Friesenhahn 2014-12-26 16:01:04 +00:00
parent 5ecaadc951
commit e501767856
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-12-26 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
* libtiff/tif_stream.cxx: Fix warnings about unused parameters.
2014-12-25 Even Rouault <even.rouault@spatialys.com>
* libtiff/tif_getimage.c, libtiff/tif_ojpeg.c, libtiff/tif_zip.c: fix

View File

@ -1,4 +1,4 @@
/* $Id: tif_stream.cxx,v 1.11 2010-12-11 23:12:29 faxguy Exp $ */
/* $Id: tif_stream.cxx,v 1.12 2014-12-26 16:01:05 bfriesen Exp $ */
/*
* Copyright (c) 1988-1996 Sam Leffler
@ -340,12 +340,16 @@ _tiffisCloseProc(thandle_t fd)
static int
_tiffDummyMapProc(thandle_t , void** base, toff_t* size )
{
(void) base;
(void) size;
return (0);
}
static void
_tiffDummyUnmapProc(thandle_t , void* base, toff_t size )
{
(void) base;
(void) size;
}
/*