diff options
author | erdgeist <> | 2007-10-12 21:57:12 +0000 |
---|---|---|
committer | erdgeist <> | 2007-10-12 21:57:12 +0000 |
commit | 4c15dc7a70b189a7ae2cc66196c42f26881eb85e (patch) | |
tree | f34328ff703580dfd287a312a602ec636d27b526 /trackerlogic.c | |
parent | dd82db18ad50c391c22fe3e41d25d7eedf21528d (diff) |
make 64bit safe
Diffstat (limited to 'trackerlogic.c')
-rw-r--r-- | trackerlogic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trackerlogic.c b/trackerlogic.c index 9ca283e..239efb8 100644 --- a/trackerlogic.c +++ b/trackerlogic.c | |||
@@ -669,7 +669,7 @@ size_t return_stats_for_slash24s( char *reply, size_t amount, ot_dword thresh ) | |||
669 | byte_zero( counts, sizeof( counts ) ); | 669 | byte_zero( counts, sizeof( counts ) ); |
670 | byte_zero( slash24s, amount * 2 * sizeof(ot_dword) ); | 670 | byte_zero( slash24s, amount * 2 * sizeof(ot_dword) ); |
671 | 671 | ||
672 | r += sprintf( r, "Stats for all /24s with more than %ld announced torrents:\n\n", thresh ); | 672 | r += sprintf( r, "Stats for all /24s with more than %u announced torrents:\n\n", thresh ); |
673 | 673 | ||
674 | for( i=0; i<256; ++i ) { | 674 | for( i=0; i<256; ++i ) { |
675 | ot_vector *torrents_list = &all_torrents[i]; | 675 | ot_vector *torrents_list = &all_torrents[i]; |