commit 05e2c1d8168c0ce159a93cd10e78f0517d8f38a1
parent 4db318da2655b5efd26a38a473714c97e22463a2
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 27 Mar 2019 11:06:52 +0100
Add a final dot when displaying elapsed time before printing results.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/statzone.c b/src/statzone.c
@@ -4,7 +4,7 @@
* https://www.statdns.com
*
* Created: 2012-02-13
- * Last Updated: 2019-01-20
+ * Last Updated: 2019-03-27
*
* StatZone is released under the BSD 2-Clause license
* See LICENSE file for details.
@@ -217,7 +217,7 @@ main(int argc, char *argv[]) {
results.runtime = elapsed.tv_sec + elapsed.tv_nsec / 1E9;
/* Printing results */
- fprintf(stderr, "Processed %" PRIu64 " lines in %f seconds\n\n", results.processedLines, results.runtime);
+ fprintf(stderr, "Processed %" PRIu64 " lines in %f seconds.\n\n", results.processedLines, results.runtime);
/* Printing CVS values */
fprintf(stdout, "---[ CSV values ]--------------------------------------------------------------\n");