From: Jure Bajic Date: Sun, 26 May 2024 09:33:39 +0000 (+0200) Subject: [fix] Add newline when file exceeds 128KB X-Git-Tag: v1.5.7^2~118^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c6a519fdd8caef500244b838beab7f7a160f70f;p=thirdparty%2Fzstd.git [fix] Add newline when file exceeds 128KB --- diff --git a/programs/dibio.c b/programs/dibio.c index 26ebe5ca1..7ba22d15b 100644 --- a/programs/dibio.c +++ b/programs/dibio.c @@ -298,7 +298,7 @@ static fileStats DiB_fileStats(const char** fileNamesTable, int nbFiles, size_t fs.oneSampleTooLarge |= (fileSize > 2*SAMPLESIZE_MAX); /* Limit to the first SAMPLESIZE_MAX (128kB) of the file */ - DISPLAYLEVEL(3, "Sample file '%s' is too large, limiting to %d KB", + DISPLAYLEVEL(3, "Sample file '%s' is too large, limiting to %d KB\n", fileNamesTable[n], SAMPLESIZE_MAX / (1 KB)); } fs.nbSamples += 1;