summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorMichael Walle <michael@walle.cc>2022-12-28 16:27:14 +0100
committerTom Rini <trini@konsulko.com>2022-12-29 09:50:53 -0500
commitfe1489bc6d25de34baa50fe5798820b0dae537d4 (patch)
tree1da7471cb88eca359d0a01608365a230577479ae /net
parent478ed23e11beb96a071fb5387bfe117d0f84e5aa (diff)
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>
Diffstat (limited to 'net')
-rw-r--r--net/wget.c1
1 files changed, 1 insertions, 0 deletions
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 <command.h>
#include <common.h>
+#include <display_options.h>
#include <env.h>
#include <image.h>
#include <mapmem.h>