Skip to content

Commit

Permalink
Fix #534 typo
Browse files Browse the repository at this point in the history
  • Loading branch information
phaag committed May 24, 2024
1 parent 18e174a commit 74c286f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nfdump/nflowcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ static uint64_t order_bpp_inout(FlowHashRecord_t *record) {
uint64_t packets = record->inPackets + record->outPackets;
if (packets == 0) return 0;

uint64_t bytes = record->outBytes + record->outBytes;
uint64_t bytes = record->inBytes + record->outBytes;
return bytes / packets;
} // End of order_bpp_inout

Expand Down

0 comments on commit 74c286f

Please sign in to comment.