summaryrefslogtreecommitdiff
path: root/Source/WebCore/xml/XPathParser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/xml/XPathParser.cpp')
-rw-r--r--Source/WebCore/xml/XPathParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/xml/XPathParser.cpp b/Source/WebCore/xml/XPathParser.cpp
index 749180dbe..b5e6a9237 100644
--- a/Source/WebCore/xml/XPathParser.cpp
+++ b/Source/WebCore/xml/XPathParser.cpp
@@ -103,7 +103,7 @@ static bool isAxisName(const String& name, Step::Axis& type)
AxisNamesMap::iterator it = axisNames.find(name);
if (it == axisNames.end())
return false;
- type = it->value;
+ type = it->second;
return true;
}