file-tiff-load: fix mismatching variable type

This commit is contained in:
Simon Budig 2023-05-20 18:40:41 +02:00
parent c8739aa494
commit a2458f1528
1 changed files with 3 additions and 3 deletions

View File

@ -1297,8 +1297,8 @@ load_image (GFile *file,
/* any resolution info in the file? */
{
gfloat xres = 72.0;
gfloat yres = 72.0;
gdouble xres = 72.0;
gdouble yres = 72.0;
gushort read_unit;
GimpUnit unit = GIMP_UNIT_PIXEL; /* invalid unit */
@ -2701,4 +2701,4 @@ tiff_dialog_show_reduced (GtkWidget *toggle,
TIFFReadDirectory (pages->tif);
}
}
}