X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fyaz-xmlquery.c;h=864df44903adcb19e97f7740f41bd9f8ae11eb86;hb=e4368af2ede9079d33e7a8fd280d29b2bde1d1ad;hp=b2dc5880a1723a4a3526bbf8de01350255a64aa9;hpb=fc6d778b923000b5c6ad8e108b0b184178a9d33f;p=yaz-moved-to-github.git diff --git a/util/yaz-xmlquery.c b/util/yaz-xmlquery.c index b2dc588..864df44 100644 --- a/util/yaz-xmlquery.c +++ b/util/yaz-xmlquery.c @@ -1,8 +1,8 @@ /* - * Copyright (C) 1995-2005, Index Data ApS + * Copyright (C) 1995-2006, Index Data ApS * See the file LICENSE for details. * - * $Id: yaz-xmlquery.c,v 1.3 2006-07-06 10:17:55 adam Exp $ + * $Id: yaz-xmlquery.c,v 1.5 2006-10-27 11:02:50 adam Exp $ */ #include @@ -62,10 +62,10 @@ void pqftoxmlquery(const char *pqf) } else { - char *buf_out = 0; + xmlChar *buf_out = 0; int len_out = 0; - xmlDocDumpMemory(doc, (xmlChar **) &buf_out, &len_out); + xmlDocDumpMemory(doc, &buf_out, &len_out); if (!len_out || !buf_out) { @@ -153,7 +153,7 @@ void xmlfiletopqf(const char *xmlfile) } #endif -void usage() +void usage(void) { fprintf(stderr, "%s [-p pqf] [-x xmlfile]\n", prog); fprintf(stderr, " -p pqf reads pqf. write xml to stdout\n");