File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ bool Label::match_packet(pcap_packet_info *pi) {
75
75
void Label::print () {
76
76
printf (" Label {\n " );
77
77
printf (" bpf: %s\n " , bpf_string_filter.c_str ());
78
- printf (" tstart: %llu \n " , ts_start);
79
- printf (" tend: %llu \n " , ts_end);
78
+ printf (" tstart: %lu \n " , ts_start);
79
+ printf (" tend: %lu \n " , ts_end);
80
80
printf (" }\n " );
81
81
}
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ void Block::print(FILE *stream) {
26
26
}
27
27
fprintf (stream, " }\n " );
28
28
fprintf (stream, " FileWindow {\n " );
29
- fprintf (stream, " start: %llu \n " , fw.f_start );
30
- fprintf (stream, " end: %llu \n " , fw.f_end );
29
+ fprintf (stream, " start: %lu \n " , fw.f_start );
30
+ fprintf (stream, " end: %lu \n " , fw.f_end );
31
31
fprintf (stream, " }\n " );
32
32
fprintf (stream, " }\n " );
33
33
}
You can’t perform that action at this time.
0 commit comments