]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core: minor coding style fix
authorLennart Poettering <lennart@poettering.net>
Wed, 6 Apr 2016 18:46:52 +0000 (20:46 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 12 Apr 2016 11:43:31 +0000 (13:43 +0200)
src/core/dbus-execute.c

index 973a60187d4f7cda41ca5f2cc716c32a79aa8353..9dfca14914cecfda8317bdd6dc69cce058ca0d48 100644 (file)
@@ -837,9 +837,9 @@ int bus_exec_context_set_transient_property(
 
                 if (mode != UNIT_CHECK) {
 
-                        if (isempty(uu)) {
+                        if (isempty(uu))
                                 c->user = mfree(c->user);
-                        else {
+                        else {
                                 char *t;
 
                                 t = strdup(uu);
@@ -864,9 +864,9 @@ int bus_exec_context_set_transient_property(
 
                 if (mode != UNIT_CHECK) {
 
-                        if (isempty(gg)) {
+                        if (isempty(gg))
                                 c->group = mfree(c->group);
-                        else {
+                        else {
                                 char *t;
 
                                 t = strdup(gg);