From a14f3fbffb910051b717999aec23896be50fa8cd Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Mon, 11 Feb 2019 15:52:37 -0600 Subject: [PATCH] apps/netutils/tftpc: Fix unmatched #endif found in build testing --- netutils/tftpc/tftpc_get.c | 1 - netutils/tftpc/tftpc_put.c | 1 - 2 files changed, 2 deletions(-) diff --git a/netutils/tftpc/tftpc_get.c b/netutils/tftpc/tftpc_get.c index 848478ccb..e6b945728 100644 --- a/netutils/tftpc/tftpc_get.c +++ b/netutils/tftpc/tftpc_get.c @@ -372,6 +372,5 @@ int tftpget(FAR const char *remote, FAR const char *local, in_addr_t addr, errout: return result; } -#endif #endif /* CONFIG_NET && CONFIG_NET_UDP */ diff --git a/netutils/tftpc/tftpc_put.c b/netutils/tftpc/tftpc_put.c index 198f97526..890224646 100644 --- a/netutils/tftpc/tftpc_put.c +++ b/netutils/tftpc/tftpc_put.c @@ -519,6 +519,5 @@ int tftpput(FAR const char *local, FAR const char *remote, in_addr_t addr, errout: return result; } -#endif #endif /* CONFIG_NET && CONFIG_NET_UDP */