From: Josh Coalson Date: Tue, 16 Jan 2001 00:08:14 +0000 (+0000) Subject: fix a typo bug X-Git-Tag: 1.2.0~2726 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c00438cc58716009d10810bade44fdd1d372067f;p=platform%2Fupstream%2Fflac.git fix a typo bug --- diff --git a/src/flac/decode.c b/src/flac/decode.c index 1473a5e..0b49309 100644 --- a/src/flac/decode.c +++ b/src/flac/decode.c @@ -95,24 +95,24 @@ int decode_wav(const char *infile, const char *outfile, bool verbose, uint64 ski goto wav_abort_; } if(!FLAC__file_decoder_process_remaining_frames(decoder)) { - if(verbose) ( printf("\n"); fflush(stdout); } + if(verbose) { printf("\n"); fflush(stdout); } fprintf(stderr, "%s: ERROR during decoding\n", infile); goto wav_abort_; } if(decoder->state != FLAC__FILE_DECODER_OK && decoder->state != FLAC__FILE_DECODER_END_OF_FILE) { - if(verbose) ( printf("\n"); fflush(stdout); } + if(verbose) { printf("\n"); fflush(stdout); } fprintf(stderr, "%s: ERROR during decoding\n", infile); goto wav_abort_; } } else { if(!FLAC__file_decoder_process_whole_file(decoder)) { - if(verbose) ( printf("\n"); fflush(stdout); } + if(verbose) { printf("\n"); fflush(stdout); } fprintf(stderr, "%s: ERROR during decoding\n", infile); goto wav_abort_; } if(decoder->state != FLAC__FILE_DECODER_OK && decoder->state != FLAC__FILE_DECODER_END_OF_FILE) { - if(verbose) ( printf("\n"); fflush(stdout); } + if(verbose) { printf("\n"); fflush(stdout); } fprintf(stderr, "%s: ERROR during decoding, state=%d:%s\n", infile, decoder->state, FLAC__FileDecoderStateString[decoder->state]); goto wav_abort_; } @@ -192,24 +192,24 @@ int decode_raw(const char *infile, const char *outfile, bool verbose, uint64 ski goto raw_abort_; } if(!FLAC__file_decoder_process_remaining_frames(decoder)) { - if(verbose) ( printf("\n"); fflush(stdout); } + if(verbose) { printf("\n"); fflush(stdout); } fprintf(stderr, "%s: ERROR during decoding\n", infile); goto raw_abort_; } if(decoder->state != FLAC__FILE_DECODER_OK && decoder->state != FLAC__FILE_DECODER_END_OF_FILE) { - if(verbose) ( printf("\n"); fflush(stdout); } + if(verbose) { printf("\n"); fflush(stdout); } fprintf(stderr, "%s: ERROR during decoding\n", infile); goto raw_abort_; } } else { if(!FLAC__file_decoder_process_whole_file(decoder)) { - if(verbose) ( printf("\n"); fflush(stdout); } + if(verbose) { printf("\n"); fflush(stdout); } fprintf(stderr, "%s: ERROR during decoding\n", infile); goto raw_abort_; } if(decoder->state != FLAC__FILE_DECODER_OK && decoder->state != FLAC__FILE_DECODER_END_OF_FILE) { - if(verbose) ( printf("\n"); fflush(stdout); } + if(verbose) { printf("\n"); fflush(stdout); } fprintf(stderr, "%s: ERROR during decoding\n", infile); goto raw_abort_; }