app: fix #include order in gimp-spawn.c

... so that GLib is included before the platform-specific headers,
so that we can check for G_OS_WIN32.

Spotted by Partha, as usual :)
This commit is contained in:
Ell 2018-03-10 02:18:39 -05:00
parent 8de34f704d
commit b590b59542
1 changed files with 2 additions and 2 deletions

View File

@ -20,6 +20,8 @@
#include "config.h"
#include <glib-object.h>
#ifdef HAVE_VFORK
#include <sys/types.h>
#include <sys/wait.h>
@ -36,8 +38,6 @@
#include <io.h>
#endif
#include <glib-object.h>
#include "core-types.h"
#include "gimp-spawn.h"