summaryrefslogtreecommitdiff
path: root/print-sll.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-04-23 11:53:22 -0700
committerGuy Harris <guy@alum.mit.edu>2014-04-23 11:53:22 -0700
commita2633f2f21439cc453530a0cff47ac6084c40a76 (patch)
treecf77f1e4fd4b1e18fcda1e047e84f959ae584640 /print-sll.c
parent30f0d2314d1086ebf4bad29b1d11c7916338b95d (diff)
downloadtcpdump-a2633f2f21439cc453530a0cff47ac6084c40a76.tar.gz
More fixes for uint8_t being shorter than u_int8_t.
Fix a typo while we're at it.
Diffstat (limited to 'print-sll.c')
-rw-r--r--print-sll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print-sll.c b/print-sll.c
index 17d5320d..0ca36f53 100644
--- a/print-sll.c
+++ b/print-sll.c
@@ -81,7 +81,7 @@ struct sll_header {
uint16_t sll_pkttype; /* packet type */
uint16_t sll_hatype; /* link-layer address type */
uint16_t sll_halen; /* link-layer address length */
- uint8_t sll_addr[SLL_ADDRLEN]; /* link-layer address */
+ uint8_t sll_addr[SLL_ADDRLEN]; /* link-layer address */
uint16_t sll_protocol; /* protocol */
};