From: barbieri Date: Sat, 13 Feb 2010 12:19:07 +0000 (+0000) Subject: e_dbus: remove extra braces X-Git-Tag: 2.0_alpha~43^2~289 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c239323352d9675c6345e242ba1862c417f6a5d8;p=framework%2Fuifw%2Fedbus.git e_dbus: remove extra braces By: Gustavo F. Padovan git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@46131 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/bin/e_dbus_connman_test.c b/src/bin/e_dbus_connman_test.c index 42f4d23..4ef7b49 100644 --- a/src/bin/e_dbus_connman_test.c +++ b/src/bin/e_dbus_connman_test.c @@ -256,10 +256,8 @@ _on_cmd_property_set(char *cmd, char *args) fprintf(stderr, "set_property %s [%p] %s %c %p...\n", args, element, name, type, value); if (!e_connman_element_property_set(element, name, type, value)) - { fputs("ERROR: error setting property.\n", stderr); - return 1; - } + return 1; }