# HG changeset patch
# User Yoshiki Yazawa <yaz@honeyplanet.jp>
# Date 1251565897 -32400
# Node ID 18d3e7c582de6b57c16d3e7ae89b5804e85abf95
# Parent  657907189ffb7f9e2cee0ede92eb4687e2a54f89
suppress warning in particular environment.

diff -r 657907189ffb -r 18d3e7c582de twitter_api.c
--- a/twitter_api.c	Mon Jul 27 21:35:40 2009 +0900
+++ b/twitter_api.c	Sun Aug 30 02:11:37 2009 +0900
@@ -138,7 +138,7 @@
             else if(!xmlStrcmp(nptr->name, (xmlChar *)"id")) {
                 gchar *str = (gchar *)xmlNodeGetContent(nptr);
                 st->id = atoll(str);
-                twitter_debug("id=%lld\n", st->id);
+                twitter_debug("id=%llud\n", (long long unsigned int)st->id);
                 xmlFree(str);
             }
             else if(!xmlStrcmp(nptr->name, (xmlChar *)"text")) {