From 8bfe344923406e90aea247c19175fba0dfe48cb1 Mon Sep 17 00:00:00 2001 From: jani Date: Tue, 6 May 2003 12:13:34 +0000 Subject: [PATCH] fix format warning --- src/netif/etharp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netif/etharp.c b/src/netif/etharp.c index 1cd2cb22..c2d62fdc 100644 --- a/src/netif/etharp.c +++ b/src/netif/etharp.c @@ -216,7 +216,7 @@ find_arp_entry(void) if (j != ARP_TABLE_SIZE) { DEBUGF(ETHARP_DEBUG, ("find_arp_entry: found oldest stable entry %u\n", j)); } else { - DEBUGF(ETHARP_DEBUG, ("find_arp_entry: no replacable entry could be found\n", j)); + DEBUGF(ETHARP_DEBUG, ("find_arp_entry: no replacable entry could be found\n")); } i = j; }