diff options
author | rbuj <[email protected]> | 2019-03-02 18:20:30 +0100 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-03-28 14:21:01 +0100 |
commit | b0df98a1c2745b20325ae1d70413601dda9b46dd (patch) | |
tree | 5548e03f391640d87eba01ff61e73e4554497a05 /src/wm-tester | |
parent | 83a915dc851f7d3385e0d38f57cc249e038dcd1d (diff) | |
download | marco-b0df98a1c2745b20325ae1d70413601dda9b46dd.tar.bz2 marco-b0df98a1c2745b20325ae1d70413601dda9b46dd.tar.xz |
Fix -Werror=cast-function-type
Bump glib-2 required version to 2.58:
G_SOURCE_FUNC
https://gitlab.gnome.org/GNOME/glib/commit/039fa6897bb4c5cd30caec8ee3add1a4ef612f76
Build & install:i
export CC=gcci
export CFLAGS=-Werror=cast-function-type
./autogen.sh --prefix=/usr
make clean
make
sudo make install
Diffstat (limited to 'src/wm-tester')
-rw-r--r-- | src/wm-tester/main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wm-tester/main.c b/src/wm-tester/main.c index 1581f666..d45b09f7 100644 --- a/src/wm-tester/main.c +++ b/src/wm-tester/main.c @@ -230,8 +230,7 @@ set_up_icon_windows (void) gtk_window_set_icon_list (GTK_WINDOW (w), icons); - g_list_foreach (icons, (GFunc) g_object_unref, NULL); - g_list_free (icons); + g_list_free_full (icons, g_object_unref); gtk_widget_show_all (w); |