X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2Fprio_heap.c;h=a7af6f85eca8a239c39aabdc46a91ba9f861af1b;hb=ec83b616a71d76cc062371339472ed66ba405824;hp=471944a54e23ecb964397a76716ea60236c5fdf3;hpb=1212663fba7c5e003e05d24f043d5ed57eb18b24;p=firefly-linux-kernel-4.4.55.git diff --git a/lib/prio_heap.c b/lib/prio_heap.c index 471944a54e23..a7af6f85eca8 100644 --- a/lib/prio_heap.c +++ b/lib/prio_heap.c @@ -31,7 +31,7 @@ void *heap_insert(struct ptr_heap *heap, void *p) if (heap->size < heap->max) { /* Heap insertion */ - int pos = heap->size++; + pos = heap->size++; while (pos > 0 && heap->gt(p, ptrs[(pos-1)/2])) { ptrs[pos] = ptrs[(pos-1)/2]; pos = (pos-1)/2;