1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00

Use G_GSIZE_FORMAT instead of "%lu" for portability

In the function stanza_create_avatar_metadata_publish_iq, use the format
string `"%"G_GSIZE_FORMAT` instead of "%lu", for an argument of type
gsize.
This commit is contained in:
Maxi Wuttke 2022-09-28 21:02:20 +00:00 committed by Michael Vetter
parent 7ffe55e980
commit 021927a549

View File

@ -2661,7 +2661,7 @@ stanza_create_avatar_metadata_publish_iq(xmpp_ctx_t* ctx, const char* img_data,
xmpp_stanza_set_name(info, STANZA_NAME_INFO); xmpp_stanza_set_name(info, STANZA_NAME_INFO);
xmpp_stanza_set_attribute(info, "id", sha1); xmpp_stanza_set_attribute(info, "id", sha1);
xmpp_free(ctx, sha1); xmpp_free(ctx, sha1);
char* bytes = g_strdup_printf("%lu", len); char* bytes = g_strdup_printf("%"G_GSIZE_FORMAT, len);
char* h = g_strdup_printf("%d", height); char* h = g_strdup_printf("%d", height);
char* w = g_strdup_printf("%d", width); char* w = g_strdup_printf("%d", width);
xmpp_stanza_set_attribute(info, "bytes", bytes); xmpp_stanza_set_attribute(info, "bytes", bytes);