client: Fix typo for Android builds

This commit is contained in:
Rom Walton 2013-02-12 12:36:10 -05:00 committed by Oliver Bock
parent 05eba7c951
commit 255fbade62
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ int CLIENT_STATE::check_suspend_processing() {
// So compute only if 95% charged or more. // So compute only if 95% charged or more.
// //
int cp = host_info.battery_charge_pct; int cp = host_info.battery_charge_pct;
if (cp >= 0) if (cp >= 0) {
if (cp < 95) { if (cp < 95) {
return SUSPEND_REASON_BATTERY_CHARGING; return SUSPEND_REASON_BATTERY_CHARGING;
} }