Skip to content

Commit 401b6be

Browse files
committed
change deprechated type (2)
uint32 is also deprecated. Remove tabs as well.
1 parent 5fe9023 commit 401b6be

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

utils/tificc/tifdiff.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,8 @@ cmsUInt32Number OpenEmbedded(TIFF* tiff, cmsHPROFILE* PtrProfile, cmsHTRANSFORM*
305305

306306
if (Verbose) {
307307

308-
fprintf(stdout, "Embedded profile found:\n");
309-
PrintProfileInformation(*PtrProfile);
308+
fprintf(stdout, "Embedded profile found:\n");
309+
PrintProfileInformation(*PtrProfile);
310310

311311
}
312312

@@ -512,7 +512,7 @@ int CmpShortTag(TIFF* tif1, TIFF* tif2, int tag)
512512
static
513513
int CmpLongTag(TIFF* tif1, TIFF* tif2, int tag)
514514
{
515-
uint32 v1, v2;
515+
uint32_t v1, v2;
516516

517517
if (!TIFFGetField(tif1, tag, &v1)) return 0;
518518
if (!TIFFGetField(tif2, tag, &v2)) return 0;
@@ -629,7 +629,7 @@ int main(int argc, char* argv[])
629629

630630
Tiff1 = Tiff2 = TiffDiff = NULL;
631631

632-
InitUtils("tiffdiff");
632+
InitUtils("tiffdiff");
633633

634634
HandleSwitches(argc, argv);
635635

0 commit comments

Comments
 (0)