talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 1ca2a745a787d091043ae15384618d6a7bbaddc1
parent 7b92628aa3d14b7c15eb68ca731d94695d7f67df
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:
Msrc/compose.c | 6+++---
Msrc/oauth2.c | 2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/compose.c b/src/compose.c @@ -9740,9 +9740,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);