From 9569c2194f248a94b4e8e53d21699c1e3a6a11eb Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 24 Nov 2019 17:32:29 +0100 Subject: [PATCH] mp3_afh: Fix whitespace issue in debug log message. There was no space character between the number and the word "chunks". Add it. --- mp3_afh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mp3_afh.c b/mp3_afh.c index 6ed73c2a..f279cd57 100644 --- a/mp3_afh.c +++ b/mp3_afh.c @@ -652,7 +652,7 @@ static int mp3_read_info(unsigned char *map, size_t numbytes, int fd, afhi->channels = header_channels(&header); afhi->seconds_total = (tv2ms(&total_time) + 500) / 1000; tv_divide(afhi->chunks_total, &total_time, &afhi->chunk_tv); - PARA_DEBUG_LOG("%" PRIu32 "chunks, each %lums\n", afhi->chunks_total, + PARA_DEBUG_LOG("%" PRIu32 " chunks, each %lums\n", afhi->chunks_total, tv2ms(&afhi->chunk_tv)); set_max_chunk_size(afhi); ret = mp3_get_id3(map, numbytes, fd, &afhi->tags); -- 2.39.2