From: Andre Noll Date: Wed, 3 Jan 2018 04:11:23 +0000 (+0100) Subject: ogg_afh_common.c: Add missing whitespace to log message. X-Git-Tag: v0.6.2~42 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=ee7fe52a4740edca5130ebb9c860bed987259acc ogg_afh_common.c: Add missing whitespace to log message. There was no space character between the number and the word "seconds". --- diff --git a/ogg_afh_common.c b/ogg_afh_common.c index 46465de1..62cde3d4 100644 --- a/ogg_afh_common.c +++ b/ogg_afh_common.c @@ -154,7 +154,7 @@ int oac_get_file_info(char *map, size_t numbytes, struct afh_info *afhi, afhi->seconds_total = num_frames / afhi->frequency; /* use roughly one page per chunk */ frames_per_chunk = num_frames / i; - PARA_INFO_LOG("%" PRIu32 "seconds, %d frames/chunk\n", + PARA_INFO_LOG("%" PRIu32 " seconds, %d frames/chunk\n", afhi->seconds_total, frames_per_chunk); ct_size = 250; afhi->chunk_table = para_malloc(ct_size * sizeof(uint32_t));