From 69176f542879e58bdddf11b78fcde9fb36a62d5c Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Mon, 12 Mar 2018 09:28:34 -0700 Subject: [PATCH] igzip: mark igzip_icf_body.c internal function static compress_icf_map_g() is only used within igzip_icf_body.c. Change-Id: Id488d6721c60c1909c922a5e0bd162b1542e71ca Signed-off-by: Daniel Verkamp --- igzip/igzip_icf_body.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/igzip/igzip_icf_body.c b/igzip/igzip_icf_body.c index 808741d..79fd8e2 100644 --- a/igzip/igzip_icf_body.c +++ b/igzip/igzip_icf_body.c @@ -121,9 +121,9 @@ void gen_icf_map_h1_base(struct isal_zstream *stream, * One pass methods for parsing provided match lookup table ************************************************************ */ -struct deflate_icf *compress_icf_map_g(struct isal_zstream *stream, - struct deflate_icf *matches_next, - struct deflate_icf *matches_end) +static struct deflate_icf *compress_icf_map_g(struct isal_zstream *stream, + struct deflate_icf *matches_next, + struct deflate_icf *matches_end) { uint32_t lit_len, lit_len2, dist; uint64_t code;