From a23f6afbeeac0a4ed088b56417ca5dfc0ea18a9e Mon Sep 17 00:00:00 2001 From: likewise Date: Thu, 6 May 2004 02:38:42 +0000 Subject: [PATCH] Fixed typos. --- 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 cd9ec0c0..50388211 100644 --- a/src/netif/etharp.c +++ b/src/netif/etharp.c @@ -186,7 +186,7 @@ etharp_tmr(void) * @return The ARP entry index that matched or is created, ERR_MEM if no * entry is found or could be recycled. */ -s8_t find_entry(struct ip_addr *ipaddr, u8_t flags) +static s8_t find_entry(struct ip_addr *ipaddr, u8_t flags) { s8_t i, old_pending, old_queue, old_stable, empty; u8_t age_pending, age_queue, age_stable; @@ -195,7 +195,7 @@ s8_t find_entry(struct ip_addr *ipaddr, u8_t flags) age_pending = age_queue = age_stable = 0; /** - * a) do a search through the cache, remember candidates */ + * a) do a search through the cache, remember candidates * b) select candidate entry * c) create new entry */