summaryrefslogtreecommitdiff
path: root/glib
diff options
context:
space:
mode:
authorHib Eris <hib@hiberis.nl>2008-12-22 09:28:47 +0100
committerCarlos Garcia Campos <carlosgc@gnome.org>2008-12-22 09:28:47 +0100
commitc80431eb1626d89e7b615e5a5149d3436b554b66 (patch)
tree30707e8613bd7ab4f74e67321b6a5f395892a95e /glib
parentfda181c35b7c7500b6d3c6ca9d454addd54929c5 (diff)
Fix compile warning on format type
Diffstat (limited to 'glib')
-rw-r--r--glib/test-poppler-glib.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/test-poppler-glib.cc b/glib/test-poppler-glib.cc
index bd33f91f..1ff70100 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)
{