summaryrefslogtreecommitdiff
path: root/xsltproc
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-06-13 14:58:09 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-06-13 14:58:09 +0000
commit636a24b3d9aaf208c172999c2668cb38db1d0dfa (patch)
tree902411231d2870da0b9d7fc5bf0ccee3d0c5bb15 /xsltproc
parent0422b114d40ed72d0b91c6aa372a41ceaa680c2a (diff)
downloadlibxslt-636a24b3d9aaf208c172999c2668cb38db1d0dfa.tar.gz
libxslt-636a24b3d9aaf208c172999c2668cb38db1d0dfa.tar.bz2
libxslt-636a24b3d9aaf208c172999c2668cb38db1d0dfa.zip
Moved the man pages to section 3 applied patch from Peter Breitenlohner
* libxslt.spec.in libexslt/Makefile.am libexslt/libexslt.3 libxslt/Makefile.am libxslt/libxslt.3: Moved the man pages to section 3 * libexslt/sets.c: applied patch from Peter Breitenlohner * doc/*: rebuilt the docs * tests/docbook/result//* tests/xmlspec/*.html: changes in generattion of &quot; as " in element content. Daniel
Diffstat (limited to 'xsltproc')
-rw-r--r--xsltproc/xsltproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xsltproc/xsltproc.c b/xsltproc/xsltproc.c
index 9f2ebe97..cf1bb4f8 100644
--- a/xsltproc/xsltproc.c
+++ b/xsltproc/xsltproc.c
@@ -118,7 +118,7 @@ static xmlChar *strparams[MAX_PARAMETERS + 1];
static int nbstrparams = 0;
static xmlChar *paths[MAX_PATHS + 1];
static int nbpaths = 0;
-static const char *output = NULL;
+static char *output = NULL;
static int errorno = 0;
static const char *writesubtree = NULL;
@@ -555,7 +555,7 @@ main(int argc, char **argv)
output = xmlCanonicPath(argv[i]);
if (output == NULL)
#endif
- output = xmlStrdup(argv[i]);
+ output = (char *) xmlStrdup((xmlChar *) argv[i]);
} else if ((!strcmp(argv[i], "-V")) ||
(!strcmp(argv[i], "-version")) ||
(!strcmp(argv[i], "--version"))) {