From: Thomas Zimmermann Date: Tue, 9 Aug 2016 16:22:04 +0000 (+0200) Subject: Fix misleading indentation to avoid respective compiler warning X-Git-Tag: dbus-1.12.0~431 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30a7cb39018333cef6469ba82a8f615344eb40a4;p=platform%2Fupstream%2Fdbus.git Fix misleading indentation to avoid respective compiler warning Signed-off-by: Thomas Zimmermann Reviewed-by: Simon McVittie Bug: https://bugs.freedesktop.org/show_bug.cgi?id=97282 --- diff --git a/dbus/dbus-shell.c b/dbus/dbus-shell.c index 2384961..44cbbcf 100644 --- a/dbus/dbus-shell.c +++ b/dbus/dbus-shell.c @@ -419,15 +419,15 @@ tokenize_command_line (const char *command_line, DBusError *error) { case '\n': if (!delimit_token (¤t_token, &retval, error)) - goto error; + goto error; - _dbus_string_free (¤t_token); + _dbus_string_free (¤t_token); - if (!_dbus_string_init (¤t_token)) - { - _DBUS_SET_OOM (error); - goto init_error; - } + if (!_dbus_string_init (¤t_token)) + { + _DBUS_SET_OOM (error); + goto init_error; + } break;