summaryrefslogtreecommitdiff
path: root/indra/newview/llmimetypes.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llmimetypes.cpp')
-rw-r--r--indra/newview/llmimetypes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llmimetypes.cpp b/indra/newview/llmimetypes.cpp
index 67f7532ff6..e1bc3dbf11 100644
--- a/indra/newview/llmimetypes.cpp
+++ b/indra/newview/llmimetypes.cpp
@@ -53,7 +53,7 @@ bool LLMIMETypes::parseMIMETypes(const LLString& xml_filename)
{
LLXMLNodePtr root;
bool success = LLViewerUICtrlFactory::getLayeredXMLNode(xml_filename, root);
- if ( ! success || ! root.isNull() || ! root->hasName( "mimetypes" ) )
+ if ( ! success || root.isNull() || ! root->hasName( "mimetypes" ) )
{
llwarns << "Unable to read MIME type file: "
<< xml_filename << llendl;