summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2015-10-12 12:15:36 -0400
committerColin Walters <walters@verbum.org>2015-10-12 12:15:53 -0400
commitf0d0608cea5d827bd024c1a34384d46295fce930 (patch)
tree9fdfaa13458e2d0c25baf7d81692513315538db3
parent2907b172fe9d1cb0648deff12bddc810141638ad (diff)
downloadgobject-introspection-f0d0608cea5d827bd024c1a34384d46295fce930.tar.gz
repository: Fix format string error in previous commit
Regression from df21d1f362a810f48a23b7c121bf09ce398539c7
-rw-r--r--girepository/gitypelib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/girepository/gitypelib.c b/girepository/gitypelib.c
index 8ae4b44d..aaa83559 100644
--- a/girepository/gitypelib.c
+++ b/girepository/gitypelib.c
@@ -1797,7 +1797,7 @@ validate_object_blob (ValidateContext *ctx,
G_TYPELIB_ERROR,
G_TYPELIB_ERROR_INVALID_BLOB,
"Incorrect number of field callbacks; expected "
- G_GUINT16_FORMAT ", got " G_GUINT16_FORMAT,
+ "%" G_GUINT16_FORMAT ", got %" G_GUINT16_FORMAT,
blob->n_field_callbacks, n_field_callbacks);
return FALSE;
}