[Commits] [SCM] claws branch, gtk3, updated. 4.0.0-398-g75a2656e7
miras at claws-mail.org
miras at claws-mail.org
Tue Jan 4 10:13:19 UTC 2022
The branch, gtk3 has been updated
via 75a2656e702105205fffa04c86f97260a4815839 (commit)
from 3d221d4ddc651ae8dd2285133d7891d35c43a504 (commit)
Summary of changes:
src/compose.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit 75a2656e702105205fffa04c86f97260a4815839
Author: Michael Rasmussen <mir at datanom.net>
Date: Tue Jan 4 11:13:05 2022 +0100
Fix CID 1496850
Signed-off-by: Michael Rasmussen <mir at datanom.net>
diff --git a/src/compose.c b/src/compose.c
index fab624670..943aead12 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -10888,7 +10888,7 @@ static void entry_paste_clipboard(Compose *compose, GtkWidget *entry,
glong len = g_utf8_strlen(contents, -1);
if (len > MAX_ALLOCA_MEM_SIZE) {
- alertpanel_error(_("Number of pages '%d' exceeds limit '%d' for paste.\nAttach as file instead."), (len / 1800), (MAX_ALLOCA_MEM_SIZE / 1800));
+ alertpanel_error(_("Number of pages '%ld' exceeds limit '%d' for paste.\nAttach as file instead."), (len / 1800), (MAX_ALLOCA_MEM_SIZE / 1800));
return;
}
/* we shouldn't delete the selection when middle-click-pasting, or we
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list