network: Silence compiler warning
Use an explicit typecast from gpointer to const gchar **.
This commit is contained in:
parent
b2ab2ea074
commit
0c1ac731ff
1 changed files with 1 additions and 1 deletions
|
@ -198,7 +198,7 @@ cc_network_panel_set_property (GObject *object,
|
||||||
GPtrArray *array;
|
GPtrArray *array;
|
||||||
const gchar **args;
|
const gchar **args;
|
||||||
array = variant_av_to_string_array (parameters);
|
array = variant_av_to_string_array (parameters);
|
||||||
args = array->pdata;
|
args = (const gchar **) array->pdata;
|
||||||
|
|
||||||
g_debug ("Invoked with operation %s", args[0]);
|
g_debug ("Invoked with operation %s", args[0]);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue