Fedora 4 patch - gcc4 fixes

This commit is contained in:
Jaroslav Kysela 2005-05-06 14:09:17 +00:00
parent f2099d5770
commit 412fb54e0d
7 changed files with 13 additions and 13 deletions

View file

@ -560,7 +560,7 @@ int snd_ctl_get_power_state(snd_ctl_t *ctl, unsigned int *state)
int snd_ctl_read(snd_ctl_t *ctl, snd_ctl_event_t *event)
{
assert(ctl && event);
return ctl->ops->read(ctl, event);
return (ctl->ops->read)(ctl, event);
}
/**