From: Michael Walle Date: Wed, 28 Dec 2022 15:27:14 +0000 (+0100) Subject: net: wget: fix implicit declaration X-Git-Url: http://git.dujemihanovic.xyz/%22/img/sics.gif/%22/static/git-favicon.png?a=commitdiff_plain;h=fe1489bc6d25de34baa50fe5798820b0dae537d4;p=u-boot.git net: wget: fix implicit declaration The compiler complains about the missing declaration of print_size(): net/wget.c:415:3: warning: implicit declaration of function ‘print_size’ [-Wimplicit-function-declaration] Fix it. Signed-off-by: Michael Walle --- diff --git a/net/wget.c b/net/wget.c index 3826c4b364..eebdf80eb5 100644 --- a/net/wget.c +++ b/net/wget.c @@ -6,6 +6,7 @@ #include #include +#include #include #include #include