diff options
author | callum_linden <none@none> | 2014-10-17 14:52:21 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-17 14:52:21 -0700 |
commit | e6bc8a6f08d6a43805ee70562823262d3bb2f891 (patch) | |
tree | fa3dd13978521116f1cbd2b3892b9c6766065c08 /indra/llmessage/llxfermanager.cpp | |
parent | 26f4e8a36bffb9ee1efb546a04d4d551037a27c6 (diff) |
Update to build on Xcode 6.0: clang is super picky extra parens around expression [-Wparenthes
es-equality]
Diffstat (limited to 'indra/llmessage/llxfermanager.cpp')
-rwxr-xr-x | indra/llmessage/llxfermanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llxfermanager.cpp b/indra/llmessage/llxfermanager.cpp index b518dd1b72..0ab67b8dda 100755 --- a/indra/llmessage/llxfermanager.cpp +++ b/indra/llmessage/llxfermanager.cpp @@ -261,7 +261,7 @@ U32 LLXferManager::numActiveListEntries(LLXfer *list_head) while (list_head) { - if ((list_head->mStatus == e_LL_XFER_IN_PROGRESS)) + if (list_head->mStatus == e_LL_XFER_IN_PROGRESS) { num_entries++; } |