summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2012-02-07 11:17:04 -0500
committerNat Goodspeed <nat@lindenlab.com>2012-02-07 11:17:04 -0500
commit219a010aaf4891fc2ab8480a2121b1244191c24d (patch)
tree03626eb287b4e095c811ceb482934458decd81c6 /indra
parentaafb03b29f5166e8978931ad8b717be32d942836 (diff)
LLProcess::Status enum values need qualification in helper function.
Diffstat (limited to 'indra')
-rw-r--r--indra/llcommon/llprocess.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llprocess.cpp b/indra/llcommon/llprocess.cpp
index bc27002701..1305c1d764 100644
--- a/indra/llcommon/llprocess.cpp
+++ b/indra/llcommon/llprocess.cpp
@@ -501,11 +501,11 @@ static LLProcess::Status interpret_status(int status)
*/
if ((status & 0xFFFF0000) == 0xC0000000)
{
- result.mState = KILLED;
+ result.mState = LLProcess::KILLED;
}
else
{
- result.mState = EXITED;
+ result.mState = LLProcess::EXITED;
}
result.mData = status;