core: minor coding style fix

This commit is contained in:
Lennart Poettering 2016-04-06 20:46:52 +02:00
parent e46e442243
commit d8d410f445

View 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);