diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-04-12 01:00:48 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-04-12 01:00:48 +0000 |
commit | ce73b66466337af13e22690cb434973fcce9dc23 (patch) | |
tree | a89b994d1bd8ebf6baef8e2b438e8510717a7d66 /ext/soap/php_encoding.c | |
parent | 68798e50ee81be548896ae299006507a63012714 (diff) | |
download | php-git-ce73b66466337af13e22690cb434973fcce9dc23.tar.gz |
Fixed compiler warning.
Diffstat (limited to 'ext/soap/php_encoding.c')
-rw-r--r-- | ext/soap/php_encoding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_encoding.c b/ext/soap/php_encoding.c index 8e731679f4..a8b64fcee5 100644 --- a/ext/soap/php_encoding.c +++ b/ext/soap/php_encoding.c @@ -1483,7 +1483,7 @@ static xmlNodePtr to_xml_object(encodeTypePtr type, zval *data, int style, xmlNo an implicit schema. Otherwise, use form. */ if (!strncmp((*attr)->namens, XML_NAMESPACE, sizeof(XML_NAMESPACE)) || - (*attr)->form == XSD_FORM_QUALIFIED && (*attr)->namens) { + ((*attr)->form == XSD_FORM_QUALIFIED) && (*attr)->namens) { xmlNsPtr nsp = encode_add_ns(xmlParam, (*attr)->namens); xmlSetNsProp(xmlParam, nsp, (*attr)->name, dummy->children->content); |