src/ogg.c : Fix log message.

This commit is contained in:
Erik de Castro Lopo 2011-07-05 19:24:34 +10:00
parent 1e8d7c5abc
commit 8fd5fdac1e
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2011-07-05 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/ogg.c
Fix log message.
2011-07-04 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c

View File

@ -190,8 +190,8 @@ ogg_stream_classify (SF_PRIVATE *psf, OGG_PRIVATE* odata)
break ;
} ;
psf_log_printf (psf, "This Ogg bitstream does not contain Vorbis audio data.\n") ;
return SFE_MALFORMED_FILE ;
psf_log_printf (psf, "This Ogg bitstream contains some uknown data type.\n") ;
return SFE_UNIMPLEMENTED ;
} /* ogg_stream_classify */
/*==============================================================================