summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gmail.com>2018-06-17 23:22:17 +0000
committerEmmanuele Bassi <ebassi@gmail.com>2018-06-17 23:22:17 +0000
commite4aef98302a33265fa921ff12767098e5bb13615 (patch)
treeb08555d24c74bdd934bf3b1737a82c5401031f1d
parentc1d33b2eaa7ca36e4d6de817ed1b83d433fe7bff (diff)
parent0b7897784f09c8d67b5afc78778c3ef77740e6bc (diff)
downloadgdk-pixbuf-e4aef98302a33265fa921ff12767098e5bb13615.tar.gz
Merge branch 'Windows' into 'master'
tiff: fix include of windows.h on case-sensitive filesystems See merge request GNOME/gdk-pixbuf!10
-rw-r--r--gdk-pixbuf/io-tiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/io-tiff.c b/gdk-pixbuf/io-tiff.c
index c25c28707..56de6ffed 100644
--- a/gdk-pixbuf/io-tiff.c
+++ b/gdk-pixbuf/io-tiff.c
@@ -41,7 +41,7 @@
#ifdef G_OS_WIN32
#include <fcntl.h>
#include <io.h>
-#include <Windows.h>
+#include <windows.h>
#define lseek(a,b,c) _lseek(a,b,c)
#define O_RDWR _O_RDWR
#endif