提交 40bc1f2d 编写于 作者: H Harvey Harrison 提交者: Linus Torvalds

lib: fix sparse shadowed variable warning

pos is always set before being used, no need to declare a
second one inside the if() block.

lib/prio_heap.c:34:7: warning: symbol 'pos' shadows an earlier one
lib/prio_heap.c:30:6: originally declared here
Signed-off-by: NHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 60348802
...@@ -31,7 +31,7 @@ void *heap_insert(struct ptr_heap *heap, void *p) ...@@ -31,7 +31,7 @@ void *heap_insert(struct ptr_heap *heap, void *p)
if (heap->size < heap->max) { if (heap->size < heap->max) {
/* Heap insertion */ /* Heap insertion */
int pos = heap->size++; pos = heap->size++;
while (pos > 0 && heap->gt(p, ptrs[(pos-1)/2])) { while (pos > 0 && heap->gt(p, ptrs[(pos-1)/2])) {
ptrs[pos] = ptrs[(pos-1)/2]; ptrs[pos] = ptrs[(pos-1)/2];
pos = (pos-1)/2; pos = (pos-1)/2;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册