diff twitter_api.c @ 315:18d3e7c582de

suppress warning in particular environment.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sun, 30 Aug 2009 02:11:37 +0900
parents 227e59f017f2
children cc41ee1f5d3a
line wrap: on
line diff
--- 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")) {