diff options
author | maksymsproductengine <maksymsproductengine@lindenlab.com> | 2014-03-14 21:05:57 +0200 |
---|---|---|
committer | maksymsproductengine <maksymsproductengine@lindenlab.com> | 2014-03-14 21:05:57 +0200 |
commit | 2f606a36f63979af73bad76d883646b2d3f8a727 (patch) | |
tree | 4f19ae61877514e6fa1290f945e5efc04218ad1f /indra/newview | |
parent | 36c8c92098004c4f2eb80114a49f3660a2d3dcbb (diff) |
Fix linux build
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llstartup.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 635776713d..c86e8df4b6 100755 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -629,7 +629,7 @@ bool idle_startup() #ifdef LL_FMODEX #if !LL_WINDOWS - if (NULL == getenv("LL_BAD_FMODEX_DRIVER") + if (NULL == getenv("LL_BAD_FMODEX_DRIVER")) #endif // !LL_WINDOWS { gAudiop = (LLAudioEngine *) new LLAudioEngine_FMODEX(gSavedSettings.getBOOL("FMODExProfilerEnable")); @@ -638,7 +638,7 @@ bool idle_startup() #ifdef LL_OPENAL #if !LL_WINDOWS - if (NULL == getenv("LL_BAD_OPENAL_DRIVER") + if (NULL == getenv("LL_BAD_OPENAL_DRIVER")) #endif // !LL_WINDOWS { gAudiop = (LLAudioEngine *) new LLAudioEngine_OpenAL(); |