summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
Diffstat (limited to 'audio')
-rw-r--r--audio/telephony-maemo.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/telephony-maemo.c b/audio/telephony-maemo.c
index b5f69b13..e22d0051 100644
--- a/audio/telephony-maemo.c
+++ b/audio/telephony-maemo.c
@@ -1204,7 +1204,9 @@ static void hal_battery_level_reply(DBusPendingCall *call, void *user_data)
if ((battchg_design > 0 || battchg_last > 0) && battchg_cur >= 0) {
int new, cur, max;
- if (battchg_last <= 0)
+ if (battchg_last > 0)
+ max = battchg_last;
+ else
max = battchg_design;
cur = telephony_get_indicator(maemo_indicators, "battchg");