Skip to content
Snippets Groups Projects
Commit 219a010a authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

LLProcess::Status enum values need qualification in helper function.

parent aafb03b2
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment