From a301835e06c3a5bf1b982aa6885fcf8fc2d1f43d Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Mon, 12 Mar 2018 09:31:14 -0700 Subject: [PATCH] igzip: mark proc_heap_base.c internal function static heapify() is only used within proc_heap_base.c. Change-Id: I68cc11c2a82fa7f6a989a1838c0e744c0c23feb3 Signed-off-by: Daniel Verkamp --- igzip/proc_heap_base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/igzip/proc_heap_base.c b/igzip/proc_heap_base.c index 8794d20..1c83788 100644 --- a/igzip/proc_heap_base.c +++ b/igzip/proc_heap_base.c @@ -30,7 +30,7 @@ #include "igzip_lib.h" #include "huff_codes.h" -void inline heapify(uint64_t * heap, uint64_t heap_size, uint64_t index) +static inline void heapify(uint64_t * heap, uint64_t heap_size, uint64_t index) { uint64_t child = 2 * index, tmp; while (child <= heap_size) {