git-svn-id: file:///svn/unbound/trunk@259 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards
2007-04-26 07:33:29 +00:00
parent b383ddfad9
commit f4ee65daa5
2 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -380,7 +380,8 @@ static void check_order(rbtree_t* all_locks)
i, (int)all_locks->count,
lock->id.thr, lock->id.instance,
lock->create_file, lock->create_line);
else if (i % (all_locks->count/75) == 0)
else if (i % ((all_locks->count/75)<1?1:all_locks->count/75)
== 0)
fprintf(stderr, ".");
i++;
check_order_lock(lock);