summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-05-05 22:42:49 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-05-05 22:42:49 +0200
commitefd10face4afd3a1198f2f1cc86cb9196989be7b (patch)
tree649b1119005f43ed9c735463af277a7ec05a75c6
parent3905c30598434fd0e45900a69f749fb5c408a870 (diff)
fixed typo in flac trace code
-rw-r--r--plugins/flac/flac.c2
1 files changed, 1 insertions, 1 deletions
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++) {