Skip to content

Commit

Permalink
prepare GPS offline evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Jun 18, 2024
1 parent 42cdff2 commit decb2b1
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 @@ -1017,8 +1017,8 @@ strftime(timestringmin, 32, "%d.%m.%Y %H:%M:%S", gmtime(&tvmin));
tvmax = timestampmax /1000000000;
timestampdiff = timestampmax - timestampmin;
strftime(timestringmax, 32, "%d.%m.%Y %H:%M:%S", gmtime(&tvmax));
fprintf(stdout, "timestamp minimum (GMT)..................: %s (%ld)\n", timestringmin, tvmin);
fprintf(stdout, "timestamp maximum (GMT)..................: %s (%ld)\n", timestringmax, tvmax);
fprintf(stdout, "timestamp minimum (timestamp)............: %s (%ld)\n", timestringmin, tvmin);
fprintf(stdout, "timestamp maximum (timestamp)............: %s (%ld)\n", timestringmax, tvmax);
if(timestampdiff > 0)
{
if(timestampdiff > 60000000000) fprintf(stdout, "duration of the dump tool (minutes)......: %" PRIu64 "\n", timestampdiff / 60000000000);
Expand Down

0 comments on commit decb2b1

Please sign in to comment.