mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 17:33:50 +01:00
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 <daniel.verkamp@intel.com>
This commit is contained in:
parent
69176f5428
commit
a301835e06
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user