Don't overcomplicate Success = false

This commit is contained in:
def 2020-02-12 22:44:36 +01:00
parent 5929517941
commit 00b74d2acb

View file

@ -203,7 +203,7 @@ bool CUpdater::ReplaceClient()
if(system(aBuf)) if(system(aBuf))
{ {
dbg_msg("updater", "ERROR: failed to set client executable bit"); dbg_msg("updater", "ERROR: failed to set client executable bit");
Success &= false; Success = false;
} }
#endif #endif
return Success; return Success;
@ -226,7 +226,7 @@ bool CUpdater::ReplaceServer()
if (system(aBuf)) if (system(aBuf))
{ {
dbg_msg("updater", "ERROR: failed to set server executable bit"); dbg_msg("updater", "ERROR: failed to set server executable bit");
Success &= false; Success = false;
} }
#endif #endif
return Success; return Success;