summaryrefslogtreecommitdiff
path: root/trackerlogic.c
diff options
context:
space:
mode:
authordenis <>2007-04-10 04:00:49 +0000
committerdenis <>2007-04-10 04:00:49 +0000
commit0f5a092f753b3173ba981ef492cd8187fdd6e962 (patch)
tree5b8b5d66fe262c2d3e854e5f3943a4cc7482260c /trackerlogic.c
parent77e5241cf8a941faf36442dbda43c93e4396ac3b (diff)
fix a warning
Diffstat (limited to 'trackerlogic.c')
-rw-r--r--trackerlogic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/trackerlogic.c b/trackerlogic.c
index bdf120f..bc5c9ef 100644
--- a/trackerlogic.c
+++ b/trackerlogic.c
@@ -446,7 +446,7 @@ static void add_pool_to_changeset( ot_hash *hash, ot_peer *peers, size_t peer_co
446int add_changeset_to_tracker( ot_byte *data, size_t len ) { 446int add_changeset_to_tracker( ot_byte *data, size_t len ) {
447 ot_hash *hash; 447 ot_hash *hash;
448 ot_byte *end = data + len; 448 ot_byte *end = data + len;
449 size_t peer_count; 449 unsigned long peer_count;
450 450
451 /* We do know, that the string is \n terminated, so it cant 451 /* We do know, that the string is \n terminated, so it cant
452 overflow */ 452 overflow */