Skip to content

Commit

Permalink
typo, duration instead of duartion
Browse files Browse the repository at this point in the history
  • Loading branch information
v74863 authored Nov 23, 2023
1 parent 31d3d60 commit aa3ae0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hcxpcapngtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++)
Expand Down

0 comments on commit aa3ae0a

Please sign in to comment.