nmcli: (trivial): use real parameter types in fill_output_connection() prototype

The generic pointers were remnants from the time the function was used as
a callback.
This commit is contained in:
Jiří Klimeš 2015-02-12 17:34:02 +01:00
parent 0994949ae1
commit 8f60081be9

View file

@ -763,10 +763,8 @@ find_active_connection (const GPtrArray *active_cons,
}
static void
fill_output_connection (gpointer data, gpointer user_data, gboolean active_only)
fill_output_connection (NMConnection *connection, NmCli *nmc, gboolean active_only)
{
NMConnection *connection = (NMConnection *) data;
NmCli *nmc = (NmCli *) user_data;
NMSettingConnection *s_con;
guint64 timestamp;
time_t timestamp_real;