summaryrefslogtreecommitdiff
path: root/libtiff/tif_close.c
diff options
context:
space:
mode:
authorAndrey Kiselev <dron@ak4719.spb.edu>2004-01-30 20:22:18 +0000
committerAndrey Kiselev <dron@ak4719.spb.edu>2004-01-30 20:22:18 +0000
commite071c35ea7d38828192762c0cdfc819e18e5b69a (patch)
treea0213e1d6bb89062d7517df4c4db83c74626e77a /libtiff/tif_close.c
parent792ee438d93145cd6a1f14ab5bc4c855b405f050 (diff)
downloadlibtiff-git-e071c35ea7d38828192762c0cdfc819e18e5b69a.tar.gz
Move TIFFCleanup() back to the tiffio.h.
Diffstat (limited to 'libtiff/tif_close.c')
-rw-r--r--libtiff/tif_close.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libtiff/tif_close.c b/libtiff/tif_close.c
index fa7273f2..9fd838ff 100644
--- a/libtiff/tif_close.c
+++ b/libtiff/tif_close.c
@@ -1,4 +1,4 @@
-/* $Header: /cvs/maptools/cvsroot/libtiff/libtiff/tif_close.c,v 1.7 2004-01-29 08:47:36 dron Exp $ */
+/* $Header: /cvs/maptools/cvsroot/libtiff/libtiff/tif_close.c,v 1.8 2004-01-30 20:22:18 dron Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -30,7 +30,7 @@
#include "tiffiop.h"
/************************************************************************/
-/* _TIFFCleanup() */
+/* TIFFCleanup() */
/************************************************************************/
/**
@@ -43,7 +43,7 @@
*/
void
-_TIFFCleanup(TIFF* tif)
+TIFFCleanup(TIFF* tif)
{
if (tif->tif_mode != O_RDONLY)
/*
@@ -113,7 +113,7 @@ TIFFClose(TIFF* tif)
TIFFCloseProc closeproc = tif->tif_closeproc;
thandle_t fd = tif->tif_clientdata;
- _TIFFCleanup(tif);
+ TIFFCleanup(tif);
(void) (*closeproc)(fd);
}