No need to read-modify-write, just set errors to TRUE

This commit is contained in:
carlo-bramini 2017-11-04 13:07:18 +01:00
parent 4ee44a24a5
commit cb4f1d389d

View file

@ -345,7 +345,7 @@ fluid_shell_run(void* data)
break;
case FLUID_FAILED: /* erronous command */
errors |= TRUE;
errors = TRUE;
case FLUID_OK: /* valid command */
break;