diff options
Diffstat (limited to 'libnm/nm-client.c')
| -rw-r--r-- | libnm/nm-client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libnm/nm-client.c b/libnm/nm-client.c index ed8b69ca..d7f61152 100644 --- a/libnm/nm-client.c +++ b/libnm/nm-client.c @@ -4576,7 +4576,7 @@ nm_client_check_connectivity_finish (NMClient *client, guint32 connectivity; g_return_val_if_fail (NM_IS_CLIENT (client), NM_CONNECTIVITY_UNKNOWN); - g_return_val_if_fail (nm_g_task_is_valid (client, result, nm_client_check_connectivity_async), NM_CONNECTIVITY_UNKNOWN); + g_return_val_if_fail (nm_g_task_is_valid (result, client, nm_client_check_connectivity_async), NM_CONNECTIVITY_UNKNOWN); ret = g_task_propagate_pointer (G_TASK (result), error); if (!ret) @@ -6738,9 +6738,9 @@ nm_client_dbus_call_finish (NMClient *client, * nm_client_dbus_set_property: * @client: the #NMClient * @object_path: path of remote object - * @interface_name: D-Bus interface to invoke method on + * @interface_name: D-Bus interface for the property to set. * @property_name: the name of the property to set - * @value: a #GVariant tuple with the value to set + * @value: a #GVariant with the value to set. * @timeout_msec: the timeout in milliseconds, -1 to use the default * timeout or %G_MAXINT for no timeout * @cancellable: (nullable): a #GCancellable or %NULL |