From: Amos Jeffries Date: Wed, 6 Oct 2010 03:39:05 +0000 (+1300) Subject: Author: Andrew Beverley X-Git-Tag: take1~199 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=94060df328db180fdede705cb95b55fc1456eb05;p=thirdparty%2Fsquid.git Author: Andrew Beverley Fix variable name clash in heap.c --- diff --git a/lib/heap.c b/lib/heap.c index 7675ee4f98..8226d88ca8 100644 --- a/lib/heap.c +++ b/lib/heap.c @@ -356,8 +356,8 @@ _heap_ify_down(heap * hp, heap_node * elm) { heap_node *kid; int left = 0, right = 0; - int true = 1; - while (true) { + int isTrue = 1; + while (isTrue) { left = Left(elm->id); right = Right(elm->id); if (!_heap_node_exist(hp, left)) {