[hackers] [slstatus][PATCH] volume: Cast SOUND_MIXER_READ_DEVMASK to int to avoid warning.

From: parazyd <parazyd_AT_dyne.org>
Date: Wed, 2 May 2018 11:38:27 +0200

---
 components/volume.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/components/volume.c b/components/volume.c
index 7c831c9..41a112d 100644
--- a/components/volume.c
+++ b/components/volume.c
_AT_@ -26,7 +26,7 @@ vol_perc(const char *card)
 		return NULL;
 	}
 
-	if (ioctl(afd, SOUND_MIXER_READ_DEVMASK, &devmask) == -1) {
+	if (ioctl(afd, (int)SOUND_MIXER_READ_DEVMASK, &devmask) == -1) {
 		fprintf(stderr, "ioctl 'SOUND_MIXER_READ_DEVMASK': %s\n", strerror(errno));
 		close(afd);
 		return NULL;
-- 
2.17.0
Received on Wed May 02 2018 - 11:38:27 CEST

This archive was generated by hypermail 2.3.0 : Wed May 02 2018 - 11:48:33 CEST