Commit d03f64a3dfb8140c22409582e57633ba762b7766

Authored by Miguel Barão
1 parent 9a5368c2
Exists in master

Fix missing percent sign

Showing 2 changed files with 1 additions and 1 deletions   Show diff stats
No preview for this file type
@@ -35,7 +35,7 @@ int main() { @@ -35,7 +35,7 @@ int main() {
35 printf("%s %d%%\n", bat_icons[life / 10], life); 35 printf("%s %d%%\n", bat_icons[life / 10], life);
36 break; 36 break;
37 case 2: /* charging */ 37 case 2: /* charging */
38 - printf("\uf583 %d\n", life); 38 + printf("\uf583 %d%%\n", life);
39 break; 39 break;
40 case 7: /* disconnected */ 40 case 7: /* disconnected */
41 printf("\uf590 Disconnected"); 41 printf("\uf590 Disconnected");