diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-01-04 13:26:39 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2018-01-04 13:26:39 +0100 |
commit | ff1c209392b2226b1f434b0fb2e54f82cfa1caee (patch) | |
tree | 3e24ecfe86fd3e942545228feabd3bc75dd4ac98 /print-802_11.c | |
parent | 4a28df231d469d78763dfaab9ee9ad4d0a73fca1 (diff) | |
download | tcpdump-ff1c209392b2226b1f434b0fb2e54f82cfa1caee.tar.gz |
Fix some Coccinelle warnings "a \ character appears outside of a #define"
Diffstat (limited to 'print-802_11.c')
-rw-r--r-- | print-802_11.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print-802_11.c b/print-802_11.c index 0593e294..354be1a4 100644 --- a/print-802_11.c +++ b/print-802_11.c @@ -2830,9 +2830,9 @@ print_radiotap_field(netdissect_options *ndo, * up the rate. */ htrate = - ieee80211_float_htrates \ - [mcs_index] \ - [((flags & IEEE80211_RADIOTAP_MCS_BANDWIDTH_MASK) == IEEE80211_RADIOTAP_MCS_BANDWIDTH_40 ? 1 : 0)] \ + ieee80211_float_htrates + [mcs_index] + [((flags & IEEE80211_RADIOTAP_MCS_BANDWIDTH_MASK) == IEEE80211_RADIOTAP_MCS_BANDWIDTH_40 ? 1 : 0)] [((flags & IEEE80211_RADIOTAP_MCS_SHORT_GI) ? 1 : 0)]; } else { /* |