From: Amos Jeffries Date: Sat, 23 Oct 2010 13:46:39 +0000 (-0600) Subject: Author: Andrew Beverley X-Git-Tag: SQUID_3_1_9~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf319d20fdeb6d15f9d7cf420cf8443664589841;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)) {