sndrv_ctl_card_info_t->abbreviation member changed to driver

This commit is contained in:
Jaroslav Kysela 2001-06-21 14:16:13 +00:00
parent bc581b87ae
commit be8e3bb72d
2 changed files with 5 additions and 5 deletions

View file

@ -1010,14 +1010,14 @@ const char *snd_ctl_card_info_get_id(const snd_ctl_card_info_t *obj)
}
/**
* \brief Get card abbreviation from a CTL card info
* \brief Get card driver name from a CTL card info
* \param obj CTL card info
* \return card abbreviation
* \return card driver name
*/
const char *snd_ctl_card_info_get_abbreviation(const snd_ctl_card_info_t *obj)
const char *snd_ctl_card_info_get_driver(const snd_ctl_card_info_t *obj)
{
assert(obj);
return obj->abbreviation;
return obj->driver;
}
/**