projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
94c2ac9
)
mp3_afh: Fix whitespace issue in debug log message.
author
Andre Noll
<maan@tuebingen.mpg.de>
Sun, 24 Nov 2019 16:32:29 +0000
(17:32 +0100)
committer
Andre Noll
<maan@tuebingen.mpg.de>
Sun, 8 Dec 2019 08:51:01 +0000
(09:51 +0100)
There was no space character between the number and the word
"chunks". Add it.
mp3_afh.c
patch
|
blob
|
history
diff --git
a/mp3_afh.c
b/mp3_afh.c
index 6ed73c2aaa2e068ee404dea1d16fec8183ee5237..f279cd5752ad8be4798ff5c0fc3fecd9c212b67a 100644
(file)
--- 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);