From d2b154f534d3a2981ecca2b071058cff0bc23e3c Mon Sep 17 00:00:00 2001 From: Sebastien GODARD Date: Thu, 29 Dec 2022 08:26:43 +0100 Subject: [PATCH] sar: A_PWR_BAT: Change arrow type for status "Not charging" Use East Arrow symbol (right arrow) instead of South Arrow for status "Not charging". Signed-off-by: Sebastien GODARD --- pr_stats.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pr_stats.c b/pr_stats.c index e2c1f9f..087a86f 100644 --- a/pr_stats.c +++ b/pr_stats.c @@ -3556,8 +3556,8 @@ void stub_print_pwr_bat_stats(struct activity *a, int prev, int curr, int dispav break; case BAT_STS_NOTCHARGING: - /* Unicode for South Arrow */ - cprintf_tr(FALSE, " %11s", "\U00002193"); + /* Unicode for East Arrow */ + cprintf_tr(FALSE, " %11s", "\U00002192"); break; case BAT_STS_FULL: -- 2.50.1