fix warning messages (v32 is unsigned)

This commit is contained in:
Thomas Bernard 2020-11-10 01:53:56 +01:00
parent 2e822691d7
commit 712fe9f5b9
No known key found for this signature in database
GPG Key ID: DB511043A31ACAAF

View File

@ -394,7 +394,7 @@ _TIFFVSetField(TIFF* tif, uint32 tag, va_list ap)
if (tif->tif_mode != O_RDONLY) if (tif->tif_mode != O_RDONLY)
goto badvalue32; goto badvalue32;
TIFFWarningExt(tif->tif_clientdata, tif->tif_name, TIFFWarningExt(tif->tif_clientdata, tif->tif_name,
"Nonstandard tile width %d, convert file", v32); "Nonstandard tile width %u, convert file", v32);
} }
td->td_tilewidth = v32; td->td_tilewidth = v32;
tif->tif_flags |= TIFF_ISTILED; tif->tif_flags |= TIFF_ISTILED;
@ -405,7 +405,7 @@ _TIFFVSetField(TIFF* tif, uint32 tag, va_list ap)
if (tif->tif_mode != O_RDONLY) if (tif->tif_mode != O_RDONLY)
goto badvalue32; goto badvalue32;
TIFFWarningExt(tif->tif_clientdata, tif->tif_name, TIFFWarningExt(tif->tif_clientdata, tif->tif_name,
"Nonstandard tile length %d, convert file", v32); "Nonstandard tile length %u, convert file", v32);
} }
td->td_tilelength = v32; td->td_tilelength = v32;
tif->tif_flags |= TIFF_ISTILED; tif->tif_flags |= TIFF_ISTILED;