diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2009-11-09 19:54:23 +0100 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2009-11-09 19:54:23 +0100 |
commit | ba9ceef1e35127cf5877a778a4e0479d88d0c656 (patch) | |
tree | ada8ec89e556de09a21420e2afcb7d3cf2ee55b2 /plugins | |
parent | da6fd9fc190ccf09f9b74304dc0e6284bd602263 (diff) |
reenabled flac error display
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/flac/flac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/flac/flac.c b/plugins/flac/flac.c index 37b0556e..c13dc7b3 100644 --- a/plugins/flac/flac.c +++ b/plugins/flac/flac.c @@ -138,7 +138,7 @@ static int cflac_init_stop_decoding; static void cflac_init_error_callback(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) { -// fprintf(stderr, "cflac: got error callback: %s\n", FLAC__StreamDecoderErrorStatusString[status]); + fprintf(stderr, "cflac: got error callback: %s\n", FLAC__StreamDecoderErrorStatusString[status]); cflac_init_stop_decoding = 1; } |