summaryrefslogtreecommitdiff
path: root/components/volume.c
diff options
context:
space:
mode:
authorAaron Marcher <me@drkhsh.at>2018-05-21 00:16:54 +0200
committerAaron Marcher <me@drkhsh.at>2018-05-21 00:16:54 +0200
commit88c799755a8d8f4f923ec8c239d46506090399e3 (patch)
tree80f20e9acdb494b418ee88351a8f23dfb469bc4f /components/volume.c
parentd014ea7d6d0d16c2635b52c3d0858dce357be2d7 (diff)
Remove units from numbers
This is a first step to decouple formatting from information because of two reasons: 1. The components should only gather and return the values by design 2. Fine grained user control should be a focus Scaling will be implemented in a different way in a later commit.
Diffstat (limited to 'components/volume.c')
-rw-r--r--components/volume.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/volume.c b/components/volume.c
index 0bfbe08..8674211 100644
--- a/components/volume.c
+++ b/components/volume.c
@@ -42,5 +42,5 @@ vol_perc(const char *card)
close(afd);
- return bprintf("%d%%", v & 0xff);
+ return bprintf("%d", v & 0xff);
}