diff options
author | Jeffrey Middleton <jefromi@gmail.com> | 2009-03-12 20:23:46 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-12 20:23:46 +0100 |
commit | 6e72755204105805624ec44d6950f7a44d9ae51c (patch) | |
tree | 540c41eac39c75cfa7417c9e2bee8f3a9242edc4 | |
parent | 6352e75910f33273a04ce9b2c104af161e64a96f (diff) | |
download | mpd-6e72755204105805624ec44d6950f7a44d9ae51c.tar.gz mpd-6e72755204105805624ec44d6950f7a44d9ae51c.tar.xz mpd-6e72755204105805624ec44d6950f7a44d9ae51c.zip |
crossfade: added missing '&'
-rw-r--r-- | src/crossfade.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crossfade.c b/src/crossfade.c index 8d752cf5f..556320f30 100644 --- a/src/crossfade.c +++ b/src/crossfade.c @@ -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) |