changeset 315:18d3e7c582de

suppress warning in particular environment.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sun, 30 Aug 2009 02:11:37 +0900
parents 657907189ffb
children ac151370a698
files twitter_api.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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")) {