Kaynağa Gözat

volume: Cast SOUND_MIXER_READ_DEVMASK to int to avoid warning.

master
parazyd 6 yıl önce
committed by Aaron Marcher
ebeveyn
işleme
34010907a6
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      components/volume.c

+ 1
- 1
components/volume.c Dosyayı Görüntüle

@@ -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;


Yükleniyor…
İptal
Kaydet