summaryrefslogtreecommitdiff
path: root/girepository
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2010-07-19 17:48:17 -0400
committerColin Walters <walters@verbum.org>2010-07-19 17:48:17 -0400
commit96b8dcdac8c0ba951fb84b3cd6a4bde94176997a (patch)
treecfed0d7a08594f215fb6753d3fb7dff93621baf2 /girepository
parent103087b785d4f09c963646d66d1c023af7a92ab5 (diff)
downloadgobject-introspection-96b8dcdac8c0ba951fb84b3cd6a4bde94176997a.tar.gz
Fix two compilation warnings
Diffstat (limited to 'girepository')
-rw-r--r--girepository/gitypelib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/girepository/gitypelib.c b/girepository/gitypelib.c
index 5469e8b2..ef87c0e6 100644
--- a/girepository/gitypelib.c
+++ b/girepository/gitypelib.c
@@ -314,7 +314,7 @@ validate_header_basic (const guint8 *memory,
G_TYPELIB_ERROR,
G_TYPELIB_ERROR_INVALID_HEADER,
"Typelib size %" G_GSIZE_FORMAT " does not match %" G_GSIZE_FORMAT,
- header->size, len);
+ (gsize) header->size, len);
return FALSE;
}