fix return value of pa_frame_aligned()

This commit is contained in:
Lennart Poettering 2008-10-21 18:26:24 +02:00
parent 4ee5e06f38
commit 519bb556cd
2 changed files with 2 additions and 2 deletions

View file

@ -777,7 +777,7 @@ size_t pa_frame_align(size_t l, const pa_sample_spec *ss) {
return (l/fs) * fs;
}
int pa_frame_aligned(size_t l, const pa_sample_spec *ss) {
pa_bool_t pa_frame_aligned(size_t l, const pa_sample_spec *ss) {
size_t fs;
pa_assert(ss);