mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-03 09:01:52 -05:00
Fixed compilation problem
This commit is contained in:
parent
c33c5760ab
commit
7cf4ef131d
1 changed files with 3 additions and 2 deletions
|
|
@ -181,9 +181,10 @@ int snd_hwdep_open(snd_hwdep_t **hwdep, const char *name, int mode)
|
||||||
* Opens a new connection to the HwDep interface specified with
|
* Opens a new connection to the HwDep interface specified with
|
||||||
* an ASCII identifier and mode.
|
* an ASCII identifier and mode.
|
||||||
*/
|
*/
|
||||||
int snd_hwdep_open(snd_hwdep_t **hwdep, const char *name, int mode, snd_config_t *lconf)
|
int snd_hwdep_open_lconf(snd_hwdep_t **hwdep, const char *name,
|
||||||
|
int mode, snd_config_t *lconf)
|
||||||
{
|
{
|
||||||
assert(hwdep && name);
|
assert(hwdep && name && lconf);
|
||||||
return snd_hwdep_open_noupdate(hwdep, lconf, name, mode);
|
return snd_hwdep_open_noupdate(hwdep, lconf, name, mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue