Re: [PATCH 1/2] net: wget: fix implicit declaration

2022-12-29 Thread Simon Glass
On Wed, 28 Dec 2022 at 09:27, Michael Walle wrote: > > 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 > --- > net/wg

Re: [PATCH 1/2] net: wget: fix implicit declaration

2022-12-29 Thread Tom Rini
On Wed, Dec 28, 2022 at 04:27:14PM +0100, Michael Walle wrote: > 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 Ap

[PATCH 1/2] net: wget: fix implicit declaration

2022-12-28 Thread Michael Walle
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 --- net/wget.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/wget.c b/