Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
saleyn committed Dec 4, 2016
1 parent 3d629fe commit 3c95c10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pcapslice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ int main(int argc, char *argv[])
}

if (verbose)
cerr << "Pkt#" << (pk_cnt+1) << " FrameSz=" << setw(2) << frame_sz
<< " Bytes=" << sz << " BufSz=" << buf.size()
<< " (BufPos=" << buf.rd_ptr() << ')' << endl;
cerr << "Pkt#" << (pk_cnt+1) << " FrameSz=" << setw(2) << frame_sz
<< " Bytes=" << sz << " BufSz=" << buf.size()
<< " (BufPos=" << (buf.rd_ptr()-buf.address()) << ')' << endl;

if (++pk_cnt >= pk_start && !count) {
if (pk_cnt > pk_end)
Expand Down

0 comments on commit 3c95c10

Please sign in to comment.