[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20181005081957.8287-1-jakub@cloudflare.com>
Date: Fri, 5 Oct 2018 10:19:57 +0200
From: Jakub Sitnicki <jakub@...udflare.com>
To: netdev@...r.kernel.org
Subject: [PATCH net-next] selftests: net: Clean up an unused variable
Address compiler warning:
ip_defrag.c: In function 'send_udp_frags':
ip_defrag.c:206:16: warning: unused variable 'udphdr' [-Wunused-variable]
struct udphdr udphdr;
^~~~~~
Signed-off-by: Jakub Sitnicki <jakub@...udflare.com>
---
tools/testing/selftests/net/ip_defrag.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/tools/testing/selftests/net/ip_defrag.c b/tools/testing/selftests/net/ip_defrag.c
index 2366dc6bce71..61ae2782388e 100644
--- a/tools/testing/selftests/net/ip_defrag.c
+++ b/tools/testing/selftests/net/ip_defrag.c
@@ -203,7 +203,6 @@ static void send_udp_frags(int fd_raw, struct sockaddr *addr,
{
struct ip *iphdr = (struct ip *)ip_frame;
struct ip6_hdr *ip6hdr = (struct ip6_hdr *)ip_frame;
- struct udphdr udphdr;
int res;
int offset;
int frag_len;
--
2.17.1
Powered by blists - more mailing lists