network: Fix freeing const pointer

From coverity:
gnome-control-center-3.14.5/panels/network/connection-editor/firewall-helpers.c:75:9: warning: passing argument 1 of 'g_free' discards 'const' qualifier from pointer target type [enabled by default]

https://bugzilla.gnome.org/show_bug.cgi?id=749897
This commit is contained in:
Bastien Nocera 2015-05-26 13:32:50 +02:00
parent 3569b2d289
commit 3b283b78b0

View file

@ -25,7 +25,7 @@
#include "firewall-helpers.h"
typedef struct {
const gchar *zone;
gchar *zone;
GtkWidget *combo;
} GetZonesReplyData;