summaryrefslogtreecommitdiff
path: root/indra/newview/llfolderviewitem.cpp
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-02-10 18:41:54 +0000
committerTofu Linden <tofu.linden@lindenlab.com>2010-02-10 18:41:54 +0000
commitcd627804576a3b58377ec6cca31837cc556939d4 (patch)
treebe73e9d55d97b2f112da1bbd64f3b2aad9ae95d9 /indra/newview/llfolderviewitem.cpp
parente7c9f674945533e4a56313b74746886bdb724be2 (diff)
bracket fix.
Diffstat (limited to 'indra/newview/llfolderviewitem.cpp')
-rw-r--r--indra/newview/llfolderviewitem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfolderviewitem.cpp b/indra/newview/llfolderviewitem.cpp
index 2a77835373..3946224c0c 100644
--- a/indra/newview/llfolderviewitem.cpp
+++ b/indra/newview/llfolderviewitem.cpp
@@ -2548,8 +2548,8 @@ bool LLInventorySort::operator()(const LLFolderViewItem* const& a, const LLFolde
LLViewerInventoryItem* bitem = (static_cast<const LLItemBridge*>(b->getListener()))->getItem();
if (!aitem || !bitem)
return false;
- S32 a_sort = (aitem->getSortField();
- S32 b_sort = (bitem->getSortField();
+ S32 a_sort = aitem->getSortField();
+ S32 b_sort = bitem->getSortField();
return a_sort < b_sort;
}
}