From: Gisle Vanem Date: Thu, 2 Jun 2016 10:26:07 +0000 (+0100) Subject: amend integer argument type (GH#521) X-Git-Tag: tcpdump-4.8.0~20 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/6334c9435e782cc73406e03a4328da58630c6639 amend integer argument type (GH#521) --- diff --git a/print-802_11.c b/print-802_11.c index 424c7cd7..aca6312b 100644 --- a/print-802_11.c +++ b/print-802_11.c @@ -2518,7 +2518,7 @@ enum ieee80211_radiotap_type { static void print_chaninfo(netdissect_options *ndo, - int freq, int flags, int presentflags) + uint16_t freq, int flags, int presentflags) { ND_PRINT((ndo, "%u MHz", freq)); if (presentflags & (1 << IEEE80211_RADIOTAP_MCS)) {