summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2016-01-07 09:47:36 -0800
committerRider Linden <rider@lindenlab.com>2016-01-07 09:47:36 -0800
commitd4661a71e474f09447714d8f7a2d95304669a0b6 (patch)
tree30ed06b2be5a08fbbaf72084f95677399cebecf2 /indra
parentcdde5d0f03f8b283e54269fa879bbbc685fe98da (diff)
Use #if rather than #ifdef to test platform switch.
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llvoicevivox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoicevivox.cpp b/indra/newview/llvoicevivox.cpp
index a43e90d85d..e9ee4c2a05 100755
--- a/indra/newview/llvoicevivox.cpp
+++ b/indra/newview/llvoicevivox.cpp
@@ -1160,7 +1160,7 @@ bool LLVivoxVoiceClient::breakVoiceConnection(bool corowait)
else
{ // If we are not doing a corowait then we must sleep until the connector has responded
// otherwise we may very well close the socket too early.
-#ifdef LL_WINDOWS
+#if LL_WINDOWS
int count = 0;
while (!mShutdownComplete && 10 > count++)
{