From a2633f2f21439cc453530a0cff47ac6084c40a76 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 23 Apr 2014 11:53:22 -0700 Subject: More fixes for uint8_t being shorter than u_int8_t. Fix a typo while we're at it. --- print-atalk.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'print-atalk.c') diff --git a/print-atalk.c b/print-atalk.c index 2816bfaf..61405493 100644 --- a/print-atalk.c +++ b/print-atalk.c @@ -51,12 +51,12 @@ static const struct tok type2str[] = { struct aarp { uint16_t htype, ptype; - uint8_t halen, palen; + uint8_t halen, palen; uint16_t op; - uint8_t hsaddr[6]; - uint8_t psaddr[4]; - uint8_t hdaddr[6]; - uint8_t pdaddr[4]; + uint8_t hsaddr[6]; + uint8_t psaddr[4]; + uint8_t hdaddr[6]; + uint8_t pdaddr[4]; }; static void atp_print(netdissect_options *, const struct atATP *, u_int); -- cgit v1.2.1