diff options
author | erdgeist <> | 2008-12-03 20:49:25 +0000 |
---|---|---|
committer | erdgeist <> | 2008-12-03 20:49:25 +0000 |
commit | 76da780220c498f81d57d4955cb82cfd32f0dbf4 (patch) | |
tree | 822a6b1ea484e0b7a6a0678cefeeb8f2ff7d87bb /ot_stats.c | |
parent | eda3ae7f91c9c844f6a8cd6114db9e223587de5e (diff) |
fix size of 0 issue
Diffstat (limited to 'ot_stats.c')
-rw-r--r-- | ot_stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -472,7 +472,7 @@ static size_t stats_return_sync_mrtg( char * reply ) | |||
472 | return sprintf( reply, | 472 | return sprintf( reply, |
473 | "%llu\n%llu\n%i seconds (%i hours)\nopentracker connections, %lu conns/s :: %lu success/s.", | 473 | "%llu\n%llu\n%i seconds (%i hours)\nopentracker connections, %lu conns/s :: %lu success/s.", |
474 | ot_overall_sync_count, | 474 | ot_overall_sync_count, |
475 | 0, | 475 | 0LL, |
476 | (int)t, | 476 | (int)t, |
477 | (int)(t / 3600), | 477 | (int)(t / 3600), |
478 | events_per_time( ot_overall_tcp_connections+ot_overall_udp_connections, t ), | 478 | events_per_time( ot_overall_tcp_connections+ot_overall_udp_connections, t ), |