[Commits] [SCM] claws branch, gtk2, updated. 3.19.1-93-gd59998f2c
jonathan at claws-mail.org
jonathan at claws-mail.org
Sun Nov 5 05:34:47 UTC 2023
The branch, gtk2 has been updated
via d59998f2cd37d1a7d5b4a7a02f61e73afa02c702 (commit)
from 2bf1d9c3d26238e409bf032d63fee2bbad4a750b (commit)
Summary of changes:
src/prefs_account.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit d59998f2cd37d1a7d5b4a7a02f61e73afa02c702
Author: Jonathan Boeing <jonathan at claws-mail.org>
Date: Sat Nov 4 17:50:15 2023 -0700
Fix size_t format specifier warning
diff --git a/src/prefs_account.c b/src/prefs_account.c
index 7ca19cb30..c58b04aac 100644
--- a/src/prefs_account.c
+++ b/src/prefs_account.c
@@ -6314,7 +6314,7 @@ static void prefs_account_oauth2_listener(GTask *task, gpointer source, gpointer
"</title><meta charset=\"utf-8\"></head><body><h1>", title,
"</h1><p>", body, "</p></body></html>", NULL);
reply = g_strdup_printf(
- "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nContent-Length: %lu\r\n\r\n%s",
+ "HTTP/1.0 200 OK\r\nContent-Type: text/html\r\nContent-Length: %" G_GSIZE_FORMAT "\r\n\r\n%s",
strlen(reply_message), reply_message);
g_free(reply_message);
write(client_sock, reply, strlen(reply));
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list