fix string list parameter in snd_device_name_(free_)hint prototypes

Fix the type of the string list parameter in the prototypes of
snd_device_name_hint() and snd_device_name_free_hint().  The prototypes
used char**, while the implementation and the users are using void**.
This commit is contained in:
Clemens Ladisch 2006-12-04 18:07:46 +01:00
parent 1ba513f96f
commit 0f99fe7830

View file

@ -214,8 +214,8 @@ int snd_card_get_index(const char *name);
int snd_card_get_name(int card, char **name);
int snd_card_get_longname(int card, char **name);
int snd_device_name_hint(int card, const char *iface, char ***hints);
int snd_device_name_free_hint(char **hints);
int snd_device_name_hint(int card, const char *iface, void ***hints);
int snd_device_name_free_hint(void **hints);
int snd_ctl_open(snd_ctl_t **ctl, const char *name, int mode);
int snd_ctl_open_lconf(snd_ctl_t **ctl, const char *name, int mode, snd_config_t *lconf);