libtiff: Avoid warnings.

From a5ced7765922594d88806ca90923b2077acf1b3b Mon Sep 17 00:00:00 2001
From: Andrey Kiselev <[EMAIL REDACTED]>
Date: Wed, 18 Apr 2007 08:42:26 +0000
Subject: [PATCH] Avoid warnings.

---
 tools/tiff2pdf.c | 25 ++++++++++---------------
 tools/tiffcrop.c |  4 ++--
 2 files changed, 12 insertions(+), 17 deletions(-)

diff --git a/tools/tiff2pdf.c b/tools/tiff2pdf.c
index 0805b22a..821b0ca7 100644
--- a/tools/tiff2pdf.c
+++ b/tools/tiff2pdf.c
@@ -1,4 +1,4 @@
-/* $Id: tiff2pdf.c,v 1.37 2007-02-24 16:28:48 dron Exp $
+/* $Id: tiff2pdf.c,v 1.37.2.1 2007-04-18 08:42:26 dron Exp $
  *
  * tiff2pdf - converts a TIFF image to a PDF document
  *
@@ -1921,9 +1921,9 @@ void t2p_read_tiff_size_tile(T2P* t2p, TIFF* input, ttile_t tile){
 }
 
 /*
-	This functions returns a non-zero value when the tile is on the right edge 
-	and does not have full imaged tile width.
-*/
+ * This functions returns a non-zero value when the tile is on the right edge
+ * and does not have full imaged tile width.
+ */
 
 int t2p_tile_is_right_edge(T2P_TILES tiles, ttile_t tile){
 
@@ -1933,15 +1933,12 @@ int t2p_tile_is_right_edge(T2P_TILES tiles, ttile_t tile){
 	} else {
 		return(0);
 	}
-	
-	return(0);
-	
 }
 
 /*
-	This functions returns a non-zero value when the tile is on the bottom edge 
-	and does not have full imaged tile length.
-*/
+ * This functions returns a non-zero value when the tile is on the bottom edge
+ * and does not have full imaged tile length.
+ */
 
 int t2p_tile_is_bottom_edge(T2P_TILES tiles, ttile_t tile){
 
@@ -1951,14 +1948,12 @@ int t2p_tile_is_bottom_edge(T2P_TILES tiles, ttile_t tile){
 	} else {
 		return(0);
 	}
-	
-	return(0);
 }
 
 /*
-	This function returns a non-zero value when the tile is a right edge tile or a bottom 
-	edge tile.
-*/
+ * This function returns a non-zero value when the tile is a right edge tile
+ * or a bottom edge tile.
+ */
 
 int t2p_tile_is_edge(T2P_TILES tiles, ttile_t tile){
 
diff --git a/tools/tiffcrop.c b/tools/tiffcrop.c
index 5a8b86f2..ded83c77 100644
--- a/tools/tiffcrop.c
+++ b/tools/tiffcrop.c
@@ -1,4 +1,4 @@
-/* $Id: tiffcrop.c,v 1.3.2.1 2007-04-06 14:22:39 dron Exp $ */
+/* $Id: tiffcrop.c,v 1.3.2.2 2007-04-18 08:42:26 dron Exp $ */
 
 /* tiffcrop.c -- a port of tiffcp.c extended to include cropping of selections
  *
@@ -1560,7 +1560,7 @@ initImageData (struct image_data *image)
   image->spp = 0;
   image->planar = 0;
   image->photometric = 0;
-  };
+  }
 
 static void
 initCropMasks (struct crop_mask *cps)