Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
Fixing compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
pstavirs committed Jul 6, 2014
1 parent 63ea66f commit 09a79a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/port.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ void Port::setAveragePacketRate(double packetsPerSec)

void Port::setAverageBitRate(double bitsPerSec)
{
double rate;
double rate = 0;
double pps = 0;
double bps = 0;
int n = 0;
Expand Down

0 comments on commit 09a79a0

Please sign in to comment.