Fix misleading indentation to avoid respective compiler warning
authorThomas Zimmermann <tdz@users.sourceforge.net>
Tue, 9 Aug 2016 16:22:04 +0000 (18:22 +0200)
committerSimon McVittie <simon.mcvittie@collabora.co.uk>
Thu, 11 Aug 2016 15:41:14 +0000 (16:41 +0100)
Signed-off-by: Thomas Zimmermann <tdz@users.sourceforge.net>
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=97282

dbus/dbus-shell.c

index 2384961..44cbbcf 100644 (file)
@@ -419,15 +419,15 @@ tokenize_command_line (const char *command_line, DBusError *error)
             {
             case '\n':
               if (!delimit_token (&current_token, &retval, error))
-               goto error;
+                goto error;
 
-               _dbus_string_free (&current_token);
+              _dbus_string_free (&current_token);
 
-               if (!_dbus_string_init (&current_token))
-                 {
-                   _DBUS_SET_OOM (error);
-                   goto init_error;
-                 }
+              if (!_dbus_string_init (&current_token))
+                {
+                  _DBUS_SET_OOM (error);
+                  goto init_error;
+                }
 
               break;