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 <michael@walle.cc>
This commit is contained in:
Michael Walle
2022-12-29 09:50:53 -05:00
committed by Tom Rini
parent 478ed23e11
commit fe1489bc6d
+1
View File
@@ -6,6 +6,7 @@
#include <command.h>
#include <common.h>
#include <display_options.h>
#include <env.h>
#include <image.h>
#include <mapmem.h>