From c8808f69b28b26a5c1c6af49d89b8755bc2b42e7 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Mon, 8 Oct 2018 12:56:27 +0200 Subject: [PATCH] Fix tftp_init_client signature --- src/apps/tftp/tftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/tftp/tftp.c b/src/apps/tftp/tftp.c index 78742d0b..4baaca38 100644 --- a/src/apps/tftp/tftp.c +++ b/src/apps/tftp/tftp.c @@ -477,7 +477,7 @@ tftp_init_server(const struct tftp_context *ctx) * @param ctx TFTP callback struct */ err_t -tftp_init_client(u8_t mode, const struct tftp_context *ctx) +tftp_init_client(const struct tftp_context *ctx) { return tftp_init_common(LWIP_TFTP_MODE_CLIENT, ctx); }