Skip to content

Commit 4c6a519

Browse files
committed
[fix] Add newline when file exceeds 128KB
1 parent 0e2ceb2 commit 4c6a519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

programs/dibio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ static fileStats DiB_fileStats(const char** fileNamesTable, int nbFiles, size_t
298298
fs.oneSampleTooLarge |= (fileSize > 2*SAMPLESIZE_MAX);
299299

300300
/* Limit to the first SAMPLESIZE_MAX (128kB) of the file */
301-
DISPLAYLEVEL(3, "Sample file '%s' is too large, limiting to %d KB",
301+
DISPLAYLEVEL(3, "Sample file '%s' is too large, limiting to %d KB\n",
302302
fileNamesTable[n], SAMPLESIZE_MAX / (1 KB));
303303
}
304304
fs.nbSamples += 1;

0 commit comments

Comments
 (0)