decoder/vorbis: fixed gcc "signed" warning

This commit is contained in:
Max Kellermann 2009-11-12 09:16:34 +01:00
parent b9c610ac87
commit 8068fd5228
1 changed files with 2 additions and 2 deletions

View File

@ -355,8 +355,8 @@ vorbis_stream_decode(struct decoder *decoder,
break;
}
if (vi->rate != audio_format.sample_rate ||
vi->channels != audio_format.channels) {
if (vi->rate != (long)audio_format.sample_rate ||
vi->channels != (int)audio_format.channels) {
/* we don't support audio format
change yet */
g_warning("audio format change, stopping here");