Skip to content

Commit c5862f7

Browse files
authored
Merge pull request #4054 from jbajic/fix-missing-newline
[fix] Add newline when file exceeds 128KB
2 parents 5e9a6c2 + 4c6a519 commit c5862f7

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)