On Fri, 22 May 2020 at 06:07, Michael Walle <mich...@walle.cc> wrote: > > Fix the following warning: > > cmd/zip.c: In function ‘do_zip’: > cmd/zip.c:30:6: warning: implicit declaration of function ‘gzip’; did you > mean ‘do_zip’? [-Wimplicit-function-declaration] > if (gzip((void *) dst, &dst_len, (void *) src, src_len) != 0) > ^~~~ > do_zip > > Include gzip.h header which declares the gzip() function. > > Signed-off-by: Michael Walle <mich...@walle.cc> > --- > cmd/zip.c | 1 + > 1 file changed, 1 insertion(+)
Reviewed-by: Simon Glass <s...@chromium.org>