libtiff: tiffset fix #597: warning: comparison of integer expressions of different signedness.

From 91e7bd01d0094a108a2d2ce26fc867c9450cb60a Mon Sep 17 00:00:00 2001
From: Su_Laus <[EMAIL REDACTED]>
Date: Sat, 12 Aug 2023 16:38:23 +0200
Subject: [PATCH] tiffset fix #597: warning: comparison of integer expressions
 of different signedness.

---
 tools/tiffset.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tools/tiffset.c b/tools/tiffset.c
index 35f18893..c7f9c5a2 100644
--- a/tools/tiffset.c
+++ b/tools/tiffset.c
@@ -461,8 +461,7 @@ int main(int argc, char *argv[])
             fsize = TIFFftell(fp) + 1;
             rewind(fp);
 
-            if (fsize > 0xFFFFFFFFUL || /* MAXUINT32 = 0xFFFFFFFFUL */
-                fsize >
+            if (fsize >
                     TIFF_TMSIZE_T_MAX || /* for x32 tmsize_t is only int32_t */
                 fsize <= 0)
             {