From e2bc8e86e2e90618fcef477cf7e01df75f2745c1 Mon Sep 17 00:00:00 2001 From: likewise Date: Wed, 5 May 2004 23:04:17 +0000 Subject: [PATCH] Removed a closing bracket, left over after removing pack directives. --- src/include/netif/etharp.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/include/netif/etharp.h b/src/include/netif/etharp.h index 1e87c6a7..09c78137 100644 --- a/src/include/netif/etharp.h +++ b/src/include/netif/etharp.h @@ -59,19 +59,22 @@ struct eth_hdr { /** the ARP message */ struct etharp_hdr { + /* Ethernet header */ struct eth_hdr ethhdr; u16_t hwtype; u16_t proto; u16_t _hwlen_protolen; u16_t opcode; struct eth_addr shwaddr; + /* assume 2-byte alignment */ struct ip_addr2 sipaddr; struct eth_addr dhwaddr; + /* assume 2-byte alignment */ struct ip_addr2 dipaddr; }; struct ethip_hdr { - struct eth_hdr eth); + struct eth_hdr eth; struct ip_hdr ip; };