commit 67f272476a4ac92a85ea2f319e23e8e8c11951db Author: Hib Eris Date: Sun Dec 21 13:41:21 2008 +0100 Fix compile warning on format type diff --git a/glib/test-poppler-glib.cc b/glib/test-poppler-glib.cc index bd33f91..1ff7010 100644 --- a/glib/test-poppler-glib.cc +++ b/glib/test-poppler-glib.cc @@ -556,7 +556,7 @@ int main (int argc, char *argv[]) attachment = (PopplerAttachment *)l->data; g_print ("\tname: %s\n", attachment->name); g_print ("\tdescription: %s\n", attachment->description); - g_print ("\tsize: %lu\n", attachment->size); + g_print ("\tsize: %" G_GSIZE_FORMAT "\n", attachment->size); strdate = poppler_format_date (attachment->ctime); if (strdate) {