diff options
author | Cosimo Cecchi <cosimo@endlessm.com> | 2015-11-16 13:52:56 -0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2015-11-16 13:59:30 -0800 |
commit | 7078e48f73cfbad8f4f6e8476b142c175699f09d (patch) | |
tree | cad74b8a04d03f77c6f6f27c13d8b99e90de7736 | |
parent | 6692efdc665da669a0c5671b61e505c509946ddd (diff) | |
download | nautilus-7078e48f73cfbad8f4f6e8476b142c175699f09d.tar.gz |
mime-actions: fix indentation
-rw-r--r-- | src/nautilus-mime-actions.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/nautilus-mime-actions.c b/src/nautilus-mime-actions.c index 908318115..07ae9c11d 100644 --- a/src/nautilus-mime-actions.c +++ b/src/nautilus-mime-actions.c @@ -1063,14 +1063,14 @@ search_for_application_dbus_call_notify_cb (GDBusProxy *proxy, if (variant == NULL) { if (!g_dbus_error_is_remote_error (error) || g_strcmp0 (g_dbus_error_get_remote_error (error), "org.freedesktop.PackageKit.Modify.Failed") == 0) { - char *message; - - message = g_strdup_printf ("%s\n%s", - _("There was an internal error trying to search for applications:"), - error->message); - eel_show_error_dialog (_("Unable to search for application"), message, - parameters_install->parent_window); - g_free (message); + char *message; + + message = g_strdup_printf ("%s\n%s", + _("There was an internal error trying to search for applications:"), + error->message); + eel_show_error_dialog (_("Unable to search for application"), message, + parameters_install->parent_window); + g_free (message); } else { g_warning ("Error while trying to search for applications: %s", error->message); |