Changed descriptors_count

This commit is contained in:
Abramo Bagnara 2001-02-18 18:32:30 +00:00
parent 0c7637393f
commit 191d03501e
12 changed files with 22 additions and 33 deletions

View file

@ -152,12 +152,10 @@ int _snd_seq_poll_descriptor(snd_seq_t *seq)
return seq->poll_fd;
}
int snd_seq_poll_descriptors_count(snd_seq_t *seq, unsigned int *count)
int snd_seq_poll_descriptors_count(snd_seq_t *seq)
{
assert(seq);
assert(count);
*count = 1;
return 0;
return 1;
}
int snd_seq_poll_descriptors(snd_seq_t *seq, struct pollfd *pfds, unsigned int space)