From 5e24ae49a62b8839cb597252deb9244c5c7248f6 Mon Sep 17 00:00:00 2001 From: softins Date: Wed, 21 Jul 2004 08:36:15 +0000 Subject: [PATCH] Removed spurious semicolon and added missing end-of-comment. --- src/netif/etharp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netif/etharp.c b/src/netif/etharp.c index e4be5321..f67e929d 100644 --- a/src/netif/etharp.c +++ b/src/netif/etharp.c @@ -197,7 +197,7 @@ static s8_t find_entry(struct ip_addr *ipaddr, u8_t flags) s8_t old_pending, old_stable, empty, i; u8_t age_pending, age_stable; #if ARP_QUEUEING - s8_t old_queue = ARP_TABLE_SIZE;; + s8_t old_queue = ARP_TABLE_SIZE; u8_t age_queue = 0; #endif @@ -764,7 +764,7 @@ err_t etharp_query(struct netif *netif, struct ip_addr *ipaddr, struct pbuf *q) /* { result == ERR_MEM } through initialization */ } #else /* ARP_QUEUEING == 0 */ - /* q && state == PENDING && ARP_QUEUEING == 0 => result = ERR_MEM + /* q && state == PENDING && ARP_QUEUEING == 0 => result = ERR_MEM */ /* { result == ERR_MEM } through initialization */ LWIP_DEBUGF(ETHARP_DEBUG | DBG_TRACE, ("etharp_query: Ethernet destination address unknown, queueing disabled, packet %p dropped\n", (void *)q)); #endif