From 0f0b325d722ae17ce08bd8c54d94d61b9e147c4c Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 12 Oct 2015 12:15:36 -0400 Subject: [PATCH] repository: Fix format string error in previous commit Regression from df21d1f362a810f48a23b7c121bf09ce398539c7 --- gitypelib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitypelib.c b/gitypelib.c index 8ae4b44d0..aaa835596 100644 --- a/gitypelib.c +++ b/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; }