1
0
mirror of https://github.com/aircrack-ng/rtl8812au.git synced 2024-11-09 23:57:00 +00:00

Fix compilation warnings about potentially uninitialized values

This commit is contained in:
evilphish 2017-11-19 19:29:16 +01:00
parent 9edb25c686
commit bb0321110a

View File

@ -4367,9 +4367,9 @@ static int cfg80211_rtw_get_channel(struct wiphy *wiphy, struct wireless_dev *wd
_adapter *padapter= wiphy_to_adapter(wiphy);
int channel;
int control_freq;
int center_freq;
int center_freq=0;
int center_freq2=0;
int width;
int width=0;
int band;
int bandWidth;
int offset;