forked from msys2/MINGW-packages
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid warning that is elevated to an error in GCC 14.
- Loading branch information
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff -urN gimp-2.10.38/plug-ins/file-tiff/file-tiff-load.c.orig gimp-2.10.38/plug-ins/file-tiff/file-tiff-load.c | ||
--- gimp-2.10.38/plug-ins/file-tiff/file-tiff-load.c.orig 2024-05-03 02:33:35.000000000 +0200 | ||
+++ gimp-2.10.38/plug-ins/file-tiff/file-tiff-load.c 2024-11-15 17:33:41.801228400 +0100 | ||
@@ -1301,8 +1301,8 @@ | ||
|
||
/* 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 */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters