From d4479a9b107cb1fe34335b0d5d1cc0ac4cd32eb2 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Fri, 12 Feb 2016 12:55:11 +0100 Subject: [PATCH] coding-style: remove unnecessary braces --- src/dnsmasq-manager/nm-dnsmasq-manager.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/dnsmasq-manager/nm-dnsmasq-manager.c b/src/dnsmasq-manager/nm-dnsmasq-manager.c index fa020bcade..f4a6208d05 100644 --- a/src/dnsmasq-manager/nm-dnsmasq-manager.c +++ b/src/dnsmasq-manager/nm-dnsmasq-manager.c @@ -295,9 +295,8 @@ create_dm_cmd_line (const char *iface, g_string_free (s, TRUE); /* dnsmasq exits if the conf dir is not present */ - if (g_file_test (CONFDIR, G_FILE_TEST_IS_DIR)) { + if (g_file_test (CONFDIR, G_FILE_TEST_IS_DIR)) nm_cmd_line_add_string (cmd, "--conf-dir=" CONFDIR); - } return cmd; }