mirror of https://github.com/GNOME/gimp.git
file-tiff-load: fix mismatching variable type
This commit is contained in:
parent
c8739aa494
commit
a2458f1528
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue