commit 3f976aabc08dd7d4762b0e04f0cbe8550f0e3ced
parent a3cb24c438778a749767459900ad8ee6316cffdd
Author: Aaron Marcher <info@nulltime.net>
Date: Mon, 9 Jan 2017 12:05:29 +0100
Makefile fix and vol_perc fix for mute
Diffstat:
2 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
@@ -4,7 +4,7 @@ include config.mk
all: slstatus
-slstatus: config.h config.mk
+slstatus: slstatus.c config.h config.mk
${CC} ${CFLAGS} -o $@ slstatus.c ${LDFLAGS}
config.h:
diff --git a/slstatus.c b/slstatus.c
@@ -658,9 +658,7 @@ vol_perc(const char *card)
}
close(afd);
- if (v == 0) {
- return smprintf("mute");
- }
+
return smprintf("%d%%", v & 0xff);
}