Skip to content
Snippets Groups Projects
Commit 3172527f authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix a warning about a condition always being true

parent c315d121
No related branches found
No related tags found
No related merge requests found
......@@ -154,9 +154,9 @@ void LLPluginProcessParent::shutdown()
{
EState state = (*it).second->mState;
if (state != STATE_CLEANUP
|| state != STATE_EXITING
|| state != STATE_DONE
|| state != STATE_ERROR)
&& state != STATE_EXITING
&& state != STATE_DONE
&& state != STATE_ERROR)
{
(*it).second->setState(STATE_GOODBYE);
}
......
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