fix valgrind build issue

This commit is contained in:
Arvid Norberg 2014-03-25 07:19:21 +00:00
parent fd6623fa5c
commit 6f0a7f3f3b
1 changed files with 12 additions and 12 deletions

View File

@ -4007,18 +4007,18 @@ retry:
STAT_LOGL(d, peers_up_send_buffer);
STAT_LOGL(d, int(sst.utp_stats.packet_loss));
STAT_LOGL(d, int(sst.utp_stats.timeout));
STAT_LOGL(d, int(sst.utp_stats.packets_in));
STAT_LOGL(d, int(sst.utp_stats.packets_out));
STAT_LOGL(d, int(sst.utp_stats.fast_retransmit));
STAT_LOGL(d, int(sst.utp_stats.packet_resend));
STAT_LOGL(d, int(sst.utp_stats.samples_above_target));
STAT_LOGL(d, int(sst.utp_stats.samples_below_target));
STAT_LOGL(d, int(sst.utp_stats.payload_pkts_in));
STAT_LOGL(d, int(sst.utp_stats.payload_pkts_out));
STAT_LOGL(d, int(sst.utp_stats.invalid_pkts_in));
STAT_LOGL(d, int(sst.utp_stats.redundant_pkts_in));
STAT_LOG(d, int(sst.utp_stats.packet_loss));
STAT_LOG(d, int(sst.utp_stats.timeout));
STAT_LOG(d, int(sst.utp_stats.packets_in));
STAT_LOG(d, int(sst.utp_stats.packets_out));
STAT_LOG(d, int(sst.utp_stats.fast_retransmit));
STAT_LOG(d, int(sst.utp_stats.packet_resend));
STAT_LOG(d, int(sst.utp_stats.samples_above_target));
STAT_LOG(d, int(sst.utp_stats.samples_below_target));
STAT_LOG(d, int(sst.utp_stats.payload_pkts_in));
STAT_LOG(d, int(sst.utp_stats.payload_pkts_out));
STAT_LOG(d, int(sst.utp_stats.invalid_pkts_in));
STAT_LOG(d, int(sst.utp_stats.redundant_pkts_in));
fprintf(m_stats_logger, "\n");