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:
parent
3569b2d289
commit
3b283b78b0
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@
|
|||
#include "firewall-helpers.h"
|
||||
|
||||
typedef struct {
|
||||
const gchar *zone;
|
||||
gchar *zone;
|
||||
GtkWidget *combo;
|
||||
} GetZonesReplyData;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue