commit a8683fed0ec7fd4923c9350e0b2198ba104b2602
parent a4710c470e53b94c4fbd6a409456b95b18110b52
Author: Ricardo Mones <ricardo@mones.org>
Date: Sun, 18 Jul 2021 13:14:37 +0200
Move extra space to a place where is needed ^_^
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/compose.c b/src/compose.c
@@ -9703,9 +9703,9 @@ static void compose_ext_editor_closed_cb(GPid pid, gint exit_status, gpointer da
gchar *chars;
if (!g_spawn_check_exit_status(exit_status, &error)) {
- alertpanel_error(_("External editor stopped with an "
- "error:%s"),
- error ? error->message : _("Unknown error"));
+ alertpanel_error(
+ _("External editor stopped with an error: %s"),
+ error ? error->message : _("Unknown error"));
if (error)
g_error_free(error);
}
diff --git a/src/oauth2.c b/src/oauth2.c
@@ -469,7 +469,7 @@ static gint oauth2_contact_server (SockInfo *sock, gchar *request, gchar *respon
} while ((toread > 0) && (time(NULL) < startplus));
if(time(NULL) >= startplus)
- log_message(LOG_PROTOCOL, _("OAuth2 socket timeout error \n"));
+ log_message(LOG_PROTOCOL, _("OAuth2 socket timeout error\n"));
g_free(token);