diff options
author | Guy Harris <guy@alum.mit.edu> | 2019-04-17 19:53:00 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2019-04-17 19:53:00 -0700 |
commit | bef667db65b15c89ec6f1cf325b76acd3c0b8748 (patch) | |
tree | 9c91253177a3c09d95d73cb5696ccea78c65504a /print-ip6.c | |
parent | 845d1aad10d87ada487322ae1df4cad6b71e2d86 (diff) | |
download | tcpdump-bef667db65b15c89ec6f1cf325b76acd3c0b8748.tar.gz |
Clean up types to squelch narrowing warnings.
Diffstat (limited to 'print-ip6.c')
-rw-r--r-- | print-ip6.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print-ip6.c b/print-ip6.c index 9f8b4dbf..f8d23490 100644 --- a/print-ip6.c +++ b/print-ip6.c @@ -174,7 +174,7 @@ trunc: uint16_t nextproto6_cksum(netdissect_options *ndo, const struct ip6_hdr *ip6, const uint8_t *data, - u_int len, u_int covlen, u_int next_proto) + u_int len, u_int covlen, uint8_t next_proto) { struct { struct in6_addr ph_src; |