From: Guy Harris Date: Wed, 13 Dec 2017 17:39:43 +0000 (-0800) Subject: C99 type, not BSD type; use uint8_t. X-Git-Tag: tcpdump-4.99-bp~1641 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/76015fad3b85fd38b4e7fc09801b429aa9d9e83c C99 type, not BSD type; use uint8_t. --- diff --git a/print-ntp.c b/print-ntp.c index 9e571eb5..c482697d 100644 --- a/print-ntp.c +++ b/print-ntp.c @@ -387,7 +387,7 @@ static void ntp_control_print(netdissect_options *ndo, register const struct ntp_control_data *cd, u_int length) { - u_int8_t control, R, E, M, opcode; + uint8_t control, R, E, M, opcode; uint16_t sequence, status, assoc, offset, count; if (length < NTP_CTRLMSG_MINLEN)