From 31fcb58e9d1048ed92510c1eff238af929a40f87 Mon Sep 17 00:00:00 2001 From: Abramo Bagnara Date: Wed, 14 Feb 2001 08:26:33 +0000 Subject: [PATCH] Fixed typo --- src/control/control_hw.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/control/control_hw.c b/src/control/control_hw.c index 92b2ab6b..048ff0da 100644 --- a/src/control/control_hw.c +++ b/src/control/control_hw.c @@ -124,9 +124,10 @@ static int snd_ctl_hw_subscribe_events(snd_ctl_t *handle, int subscribe) static int snd_ctl_hw_card_info(snd_ctl_t *handle, snd_ctl_card_info_t *info) { snd_ctl_hw_t *hw = handle->private_data; - if (ioctl(hw->fd, SNDRV_CTL_IOCTL_CARD_INFO, info) < 0) + if (ioctl(hw->fd, SNDRV_CTL_IOCTL_CARD_INFO, info) < 0) { SYSERR("SNDRV_CTL_IOCTL_CARD_INFO failed"); return -errno; + } return 0; } -- 2.47.3