From aa3ae0a1d6ae6151a1e29ee315d4a0ce5d39e2e6 Mon Sep 17 00:00:00 2001 From: v74863 <61684281+v74863@users.noreply.github.com> Date: Thu, 23 Nov 2023 17:49:05 +0300 Subject: [PATCH] typo, duration instead of duartion --- hcxpcapngtool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hcxpcapngtool.c b/hcxpcapngtool.c index 67135b43..f770547d 100644 --- a/hcxpcapngtool.c +++ b/hcxpcapngtool.c @@ -1022,8 +1022,8 @@ fprintf(stdout, "timestamp minimum (GMT)..................: %s\n", timestringmin fprintf(stdout, "timestamp maximum (GMT)..................: %s\n", timestringmax); if(timestampdiff > 0) { - if(timestampdiff > 60000000000) fprintf(stdout, "duartion of the dump tool (minutes)......: %" PRIu64 "\n", timestampdiff / 60000000000); - else fprintf(stdout, "duartion of the dump tool (seconds)......: %" PRIu64 "\n", timestampdiff / 1000000000); + if(timestampdiff > 60000000000) fprintf(stdout, "duration of the dump tool (minutes)......: %" PRIu64 "\n", timestampdiff / 60000000000); + else fprintf(stdout, "duration of the dump tool (seconds)......: %" PRIu64 "\n", timestampdiff / 1000000000); } fprintf(stdout, "used capture interfaces..................: %d\n", iface); for(c = 0; c < iface; c++)