crossfade: added missing '&'

This commit is contained in:
Jeffrey Middleton 2009-03-12 20:23:46 +01:00 committed by Max Kellermann
parent 6352e75910
commit 6e72755204
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ void cross_fade_apply(struct music_chunk *a, const struct music_chunk *b,
assert(a != NULL);
assert(b != NULL);
assert(a->length == 0 || b->length == 0 ||
audio_format_equals(&a->audio_format, b->audio_format));
audio_format_equals(&a->audio_format, &b->audio_format));
assert(current_chunk <= num_chunks);
if (a->tag == NULL && b->tag != NULL)