fix compiler warning about wrong format specifier

This commit is contained in:
Steffen Vogel 2017-10-29 23:16:04 +01:00
parent 94dd3be54f
commit 1da58b68a5

View file

@ -22,7 +22,7 @@
// load photo
static void tgp_info_update_photo_id (PurpleBlistNode *node, long long photo) {
char *llid = g_strdup_printf ("%" G_GINT64_FORMAT, photo);
char *llid = g_strdup_printf ("%lld", photo);
debug ("tgp_info_update_photo_id %s", llid);
purple_blist_node_set_string (node, TGP_INFO_PHOTO_ID, llid);
g_free (llid);