commit 1c51557367554111fac90304bd8e8f268a519d2d
parent 5d9d71f986c409c888b380018bd420fc58e8f20e
Author: Frederic Cambus <fred@statdns.com>
Date: Thu, 11 Apr 2019 15:21:34 +0200
Add final dot when printing results summary.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/logswan.c b/src/logswan.c
@@ -295,7 +295,7 @@ main(int argc, char *argv[]) {
strftime(results.timeStamp, 20, "%Y-%m-%d %H:%M:%S", localtime(&now));
/* Printing results */
- fprintf(stderr, "Processed %" PRIu64 " lines in %f seconds\n", results.processedLines, results.runtime);
+ fprintf(stderr, "Processed %" PRIu64 " lines in %f seconds.\n", results.processedLines, results.runtime);
fputs(output(&results), stdout);
/* Clean up */