From 4c15dc7a70b189a7ae2cc66196c42f26881eb85e Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Fri, 12 Oct 2007 21:57:12 +0000 Subject: make 64bit safe --- trackerlogic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trackerlogic.c') 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 ) byte_zero( counts, sizeof( counts ) ); byte_zero( slash24s, amount * 2 * sizeof(ot_dword) ); - r += sprintf( r, "Stats for all /24s with more than %ld announced torrents:\n\n", thresh ); + r += sprintf( r, "Stats for all /24s with more than %u announced torrents:\n\n", thresh ); for( i=0; i<256; ++i ) { ot_vector *torrents_list = &all_torrents[i]; -- cgit v1.2.3