From 7527650eaab1f1910f6bfa24061a0bddc7937b9f Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Mon, 18 Feb 2013 03:31:13 +0100 Subject: fixed several compiler warnings --- wsdl2c/wsdl2c.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'wsdl2c/wsdl2c.c') diff --git a/wsdl2c/wsdl2c.c b/wsdl2c/wsdl2c.c index 23dac48..c6f4b34 100755 --- a/wsdl2c/wsdl2c.c +++ b/wsdl2c/wsdl2c.c @@ -30,6 +30,7 @@ #define _DESERIALIZER_DISABLE_ #include "CallList.h" +#include "xsd2c/tr.h" /* ------------- Just for test --------------------------------- */ @@ -422,7 +423,7 @@ void handlePortType(xmlDocPtr doc, const char *name) /* handle input */ input = findSubNode(cur, "input"); if (input == NULL) { - fprintf(stderr, "WARNING: No input for operation '%'\n", opname); + fprintf(stderr, "WARNING: No input for operation '%s'\n", opname); cur = cur->next; continue; } -- cgit v1.1-32-gdbae