pidgin/android/libpurple

win32: fix a warning in http module

2013-04-08, Tomasz Wasilczyk
0ab9ed685a54
Parents 68be92b95def
Children 65c29307e55d
win32: fix a warning in http module
--- a/libpurple/http.c Mon Apr 08 16:57:03 2013 +0200
+++ b/libpurple/http.c Mon Apr 08 18:08:54 2013 +0200
@@ -1687,8 +1687,8 @@
g_hash_table_iter_init(&it, cjar->tab);
while (g_hash_table_iter_next(&it, (gpointer*)&key, (gpointer*)&cookie))
- g_string_append_printf(str, "%s: %s (expires: %lld)\n", key,
- cookie->value, (long long int)cookie->expires);
+ g_string_append_printf(str, "%s: %s (expires: %" G_GINT64_FORMAT
+ ")\n", key, cookie->value, (gint64)cookie->expires);
if (str->len > 0)
g_string_truncate(str, str->len - 1);