summaryrefslogtreecommitdiffhomepage
path: root/auto/lib/libxslt
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2018-07-24 18:46:54 +0300
committerSergey Kandaurov <pluknet@nginx.com>2018-07-24 18:46:54 +0300
commitd5c43bf51c9c62d26c4c2c09a4a337d8b8b1c060 (patch)
tree02cf43eaf5f1b8c451b0ecf30455fd15ae7a956e /auto/lib/libxslt
parenta1e2c5566c628dbf39e3f6c105ddc1dde5b41a58 (diff)
downloadnginx-d5c43bf51c9c62d26c4c2c09a4a337d8b8b1c060.tar.gz
nginx-d5c43bf51c9c62d26c4c2c09a4a337d8b8b1c060.tar.bz2
Configure: fixed compiler warnings with "-Wall -Wextra".
Diffstat (limited to 'auto/lib/libxslt')
-rw-r--r--auto/lib/libxslt/conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto/lib/libxslt/conf b/auto/lib/libxslt/conf
index 3a0f37be5..3063ac7ce 100644
--- a/auto/lib/libxslt/conf
+++ b/auto/lib/libxslt/conf
@@ -16,8 +16,8 @@
ngx_feature_libs="-lxml2 -lxslt"
ngx_feature_test="xmlParserCtxtPtr ctxt = NULL;
xsltStylesheetPtr sheet = NULL;
- xmlDocPtr doc;
- doc = xmlParseChunk(ctxt, NULL, 0, 0);
+ xmlDocPtr doc = NULL;
+ xmlParseChunk(ctxt, NULL, 0, 0);
xsltApplyStylesheet(sheet, doc, NULL);"
. auto/feature