*** empty log message ***

svn path=/trunk/boinc/; revision=5225
This commit is contained in:
Rom Walton 2005-01-27 20:04:58 +00:00
parent 76106f946e
commit 0054cd575f
1 changed files with 2 additions and 2 deletions

View File

@ -380,8 +380,8 @@ bool HOST_INFO::host_is_running_on_batteries() {
// battery is charging or missing and make that part
// of the decision.
bool bIsOnBatteryPower = (pStatus.ACLineStatus != 1);
bool bIsBatteryCharging = (pStatus.BatteryFlag & 8)
bool bIsBatteryMissing = (pStatus.BatteryFlag & 128)
bool bIsBatteryCharging = ((pStatus.BatteryFlag & 8) == 8);
bool bIsBatteryMissing = ((pStatus.BatteryFlag & 128) == 128);
return (bIsOnBatteryPower && !bIsBatteryCharging && !bIsBatteryMissing);
}