From 9c0b5a9538a0686c9541774dbaa75d826d23770a Mon Sep 17 00:00:00 2001 From: Mikael Kanstrup Date: Mon, 15 Feb 2016 11:24:00 +0100 Subject: [PATCH] ws80211: Replace some whitespaces with tabs File had both whitespaces and tabs for indentation. Replace whitespace indentation with tabs. This is the same indentation mode as ws80211.c file uses. Change-Id: I46bbd675f5089eb502b489fdfd70f30510bc95ef Reviewed-on: https://code.wireshark.org/review/13963 Reviewed-by: Anders Broman --- caputils/ws80211_utils.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/caputils/ws80211_utils.h b/caputils/ws80211_utils.h index da4ed42065..d111030e25 100644 --- a/caputils/ws80211_utils.h +++ b/caputils/ws80211_utils.h @@ -41,25 +41,25 @@ enum ws80211_channel_type { /* XXX This doesn't match AirpcapValidationType. Should it? */ enum ws80211_fcs_validation { - WS80211_FCS_ALL, - WS80211_FCS_VALID, - WS80211_FCS_INVALID + WS80211_FCS_ALL, + WS80211_FCS_VALID, + WS80211_FCS_INVALID }; struct ws80211_interface { char *ifname; gboolean can_set_freq; - gboolean can_check_fcs; - GArray *frequencies; /* Array of guint32? */ + gboolean can_check_fcs; + GArray *frequencies; /* Array of guint32? */ int channel_types; /* Union for all bands */ - int cap_monitor; + int cap_monitor; }; struct ws80211_iface_info { - int current_freq; + int current_freq; enum ws80211_channel_type current_chan_type; - enum ws80211_fcs_validation current_fcs_validation; + enum ws80211_fcs_validation current_fcs_validation; }; /** Initialize the 802.11 environment.