From 6c332f33aaaffca73917b44cb816c2f170428399 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 23 Jan 2014 15:03:38 -0500 Subject: [PATCH] tui: add a (void) cast to avoid a coverity warning --- tui/nmt-editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/nmt-editor.c b/tui/nmt-editor.c index 1f2231a27a..aa46cc1a8b 100644 --- a/tui/nmt-editor.c +++ b/tui/nmt-editor.c @@ -197,7 +197,7 @@ build_edit_connection (NMConnection *orig_connection) /* FIXME: error handling */ secrets = nmt_sync_op_wait_pointer (&op, NULL); if (secrets) - nm_connection_update_secrets (edit_connection, setting_name, secrets, NULL); + (void) nm_connection_update_secrets (edit_connection, setting_name, secrets, NULL); } g_hash_table_unref (settings);