From b4b57ddcf8656a2b8015e542ba4c95031bd6bd86 Mon Sep 17 00:00:00 2001 From: Scott D Phillips Date: Mon, 28 Nov 2016 17:07:39 -0800 Subject: [PATCH] examples: remove #include from assets.c It is not needed and pulling it in is causing a link problem with msvc. Including ges-internal.h sets the default debug category in assets.c to _ges_debug. Because _ges_debug is marked as DATA in the libges.def, it will only be linked from libges.dll if it is marked in the source with dllimport. Instead of messing with that we can just remove this include. https://bugzilla.gnome.org/show_bug.cgi?id=775295 --- examples/c/assets.c | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/c/assets.c b/examples/c/assets.c index 89450b6537..b1abac4e5b 100644 --- a/examples/c/assets.c +++ b/examples/c/assets.c @@ -21,7 +21,6 @@ #include #include #include -#include static void asset_loaded_cb (GObject * source, GAsyncResult * res, GMainLoop * mainloop)