diff options
author | callum_linden <none@none> | 2014-10-17 14:40:44 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2014-10-17 14:40:44 -0700 |
commit | 2469d3aab1b541a7383f40662f7e409ae37c67eb (patch) | |
tree | 89d5ca2914e933e89effb4816909908c5be1eec7 /indra/llmessage | |
parent | da97612b98c3f21046cb1d1f3afd61b59dc50c1e (diff) |
Update to build on Xcode 6.0: clang is super picky extra parens around expression [-Wparenthes
es-equality]
Diffstat (limited to 'indra/llmessage')
-rwxr-xr-x | indra/llmessage/llcircuit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmessage/llcircuit.cpp b/indra/llmessage/llcircuit.cpp index 5aaada63b1..3eb0e0d057 100755 --- a/indra/llmessage/llcircuit.cpp +++ b/indra/llmessage/llcircuit.cpp @@ -688,7 +688,7 @@ void LLCircuitData::checkPacketInID(TPACKETID id, BOOL receive_resent) // now, check to see if we've got a gap U32 gap = 0; - if ((mPacketsInID == id)) + if (mPacketsInID == id) { // nope! bump and wrap the counter, then return mPacketsInID++; |