From efd10face4afd3a1198f2f1cc86cb9196989be7b Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Wed, 5 May 2010 22:42:49 +0200 Subject: fixed typo in flac trace code --- plugins/flac/flac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/flac/flac.c b/plugins/flac/flac.c index d2e10b55..b60cd0a3 100644 --- a/plugins/flac/flac.c +++ b/plugins/flac/flac.c @@ -319,7 +319,7 @@ cflac_read_int16 (DB_fileinfo_t *_info, char *bytes, int size) { int n_output_frames = size / n_output_channels / sizeof (int16_t); int n = min (n_input_frames, n_output_frames); - trace ("flac: [1] if=%d, of=%d, n=%d, rem=%d, size=%d\n", n_input_frames, n_output_frames, n, remaining, size); + trace ("flac: [1] if=%d, of=%d, n=%d, rem=%d, size=%d\n", n_input_frames, n_output_frames, n, info->remaining, size); // convert from float to int16 float *in = (float *)info->buffer; for (int i = 0; i < n; i++) { -- cgit v1.2.3