fix syntax typo

This commit is contained in:
Josh Coalson 2001-06-15 21:24:34 +00:00
parent c72137a65d
commit a38a551dab
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ void error_callback(const FLAC__FileDecoder *decoder, FLAC__StreamDecoderErrorSt
{ {
stream_info_struct *stream_info = (stream_info_struct *)client_data; stream_info_struct *stream_info = (stream_info_struct *)client_data;
(void)decoder; (void)decoder;
fprintf(stderr, "%s: *** Got error code %d:%s\n", stream_info->infbasefilename, status, FLAC__StreamDecoderErrorStatusString[status]); fprintf(stderr, "%s: *** Got error code %d:%s\n", stream_info->inbasefilename, status, FLAC__StreamDecoderErrorStatusString[status]);
stream_info->abort_flag = true; stream_info->abort_flag = true;
} }