diff options
author | vsm@google.com <vsm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-26 00:02:33 +0000 |
---|---|---|
committer | vsm@google.com <vsm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-26 00:02:33 +0000 |
commit | 0a87909ee992e63975a5e81b9dde328f2740921b (patch) | |
tree | 2174f4191c0bc406141e38848aa22ea82a56b5b5 /third_party/libxml/src/xpath.c | |
parent | 113070235779bb83ef8779cdc4b392eddccf3b5a (diff) | |
download | chromium_src-0a87909ee992e63975a5e81b9dde328f2740921b.zip chromium_src-0a87909ee992e63975a5e81b9dde328f2740921b.tar.gz chromium_src-0a87909ee992e63975a5e81b9dde328f2740921b.tar.bz2 |
Import a libxml fix from upstream to make clang happy.
Review URL: http://codereview.chromium.org/9222019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@119145 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/libxml/src/xpath.c')
-rw-r--r-- | third_party/libxml/src/xpath.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/libxml/src/xpath.c b/third_party/libxml/src/xpath.c index fbacce7..4e6f29d 100644 --- a/third_party/libxml/src/xpath.c +++ b/third_party/libxml/src/xpath.c @@ -12673,7 +12673,7 @@ xmlXPathCompOpEvalFirst(xmlXPathParserContextPtr ctxt, return (total); #ifdef XP_OPTIMIZED_FILTER_FIRST case XPATH_OP_FILTER: - total =+ xmlXPathCompOpEvalFilterFirst(ctxt, op, first); + total += xmlXPathCompOpEvalFilterFirst(ctxt, op, first); return (total); #endif default: |