summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-04-06 20:46:52 +0200
committerLennart Poettering <lennart@poettering.net>2016-04-12 13:43:31 +0200
commitd8d410f4455238e30daa1775b469e31f34371f87 (patch)
treebda79a710c66e60a48d188519312a382773fe916 /src
parente46e442243d45fa2a0214baabe478a6f21ad0858 (diff)
core: minor coding style fix
Diffstat (limited to 'src')
-rw-r--r--src/core/dbus-execute.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/dbus-execute.c b/src/core/dbus-execute.c
index 973a60187d..9dfca14914 100644
--- a/src/core/dbus-execute.c
+++ b/src/core/dbus-execute.c
@@ -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);