diff options
author | Guy Harris <guy@alum.mit.edu> | 2014-04-23 11:53:22 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2014-04-23 11:53:22 -0700 |
commit | a2633f2f21439cc453530a0cff47ac6084c40a76 (patch) | |
tree | cf77f1e4fd4b1e18fcda1e047e84f959ae584640 /print-sll.c | |
parent | 30f0d2314d1086ebf4bad29b1d11c7916338b95d (diff) | |
download | tcpdump-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.c | 2 |
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 */ }; |