diff options
author | Michael Walle <michael@walle.cc> | 2022-12-28 16:27:14 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-29 09:50:53 -0500 |
commit | fe1489bc6d25de34baa50fe5798820b0dae537d4 (patch) | |
tree | 1da7471cb88eca359d0a01608365a230577479ae | |
parent | 478ed23e11beb96a071fb5387bfe117d0f84e5aa (diff) | |
download | u-boot-fe1489bc6d25de34baa50fe5798820b0dae537d4.zip u-boot-fe1489bc6d25de34baa50fe5798820b0dae537d4.tar.gz u-boot-fe1489bc6d25de34baa50fe5798820b0dae537d4.tar.bz2 |
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>
-rw-r--r-- | net/wget.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6,6 +6,7 @@ #include <command.h> #include <common.h> +#include <display_options.h> #include <env.h> #include <image.h> #include <mapmem.h> |