Fixed compilation problem

This commit is contained in:
Jaroslav Kysela 2001-11-24 18:18:25 +00:00
parent c33c5760ab
commit 7cf4ef131d

View file

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