From f6d5f4515f314b85ffa64d63ece7d5ef33f1c4e1 Mon Sep 17 00:00:00 2001 From: richardbarry Date: Tue, 21 Sep 2010 21:06:16 +0000 Subject: [PATCH] Remove possibility of having multiple definitions of DEBUG in uip_arp.c. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1114 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- Demo/Common/ethernet/FreeTCPIP/uip_arp.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Demo/Common/ethernet/FreeTCPIP/uip_arp.c b/Demo/Common/ethernet/FreeTCPIP/uip_arp.c index 4f4b06fe9..ab84419c6 100644 --- a/Demo/Common/ethernet/FreeTCPIP/uip_arp.c +++ b/Demo/Common/ethernet/FreeTCPIP/uip_arp.c @@ -115,6 +115,10 @@ static u8_t tmpage; #define BUF ( ( struct arp_hdr * ) &uip_buf[0] ) #define IPBUF ( ( struct ethip_hdr * ) &uip_buf[0] ) + +#ifdef DEBUG + #undef DEBUG +#endif #define DEBUG 0 #if DEBUG #include -- 2.39.5