From b538c2b20ea4972efa3e223e8f01bd5441f35375 Mon Sep 17 00:00:00 2001 From: Luka Perkov Date: Thu, 3 Jul 2014 13:46:24 +0200 Subject: [PATCH] examples: fix build error MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Patch fixes the following error: error: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘void *’ [-Werror=format=] indent_printf(indent, "%s\n", blobmsg_data(data)); Signed-off-by: Luka Perkov --- examples/blobmsg-example.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/blobmsg-example.c b/examples/blobmsg-example.c index d306f07..6330fea 100644 --- a/examples/blobmsg-example.c +++ b/examples/blobmsg-example.c @@ -34,7 +34,7 @@ static void dump_attr_data(struct blob_attr *data, int indent, int next_indent) int type = blobmsg_type(data); switch(type) { case BLOBMSG_TYPE_STRING: - indent_printf(indent, "%s\n", blobmsg_data(data)); + indent_printf(indent, "%s\n", (char *) blobmsg_data(data)); break; case BLOBMSG_TYPE_INT8: indent_printf(indent, "%d\n", blobmsg_get_u8(data)); -- 2.30.2