network: Silence compiler warning

Use an explicit typecast from gpointer to const gchar **.
This commit is contained in:
Debarshi Ray 2013-09-09 15:52:21 +02:00
parent b2ab2ea074
commit 0c1ac731ff

View file

@ -198,7 +198,7 @@ cc_network_panel_set_property (GObject *object,
GPtrArray *array;
const gchar **args;
array = variant_av_to_string_array (parameters);
args = array->pdata;
args = (const gchar **) array->pdata;
g_debug ("Invoked with operation %s", args[0]);