core/trivial: fix whitespace

This commit is contained in:
Thomas Haller 2019-08-01 17:28:58 +02:00
parent 9a229241f9
commit 2ea3c23723

View file

@ -284,8 +284,8 @@ nl80211_get_wake_on_wlan_handler (struct nl_msg *msg, void *arg)
struct genlmsghdr *gnlh = nlmsg_data (nlmsg_hdr (msg));
nla_parse_arr (attrs,
genlmsg_attrdata(gnlh, 0),
genlmsg_attrlen(gnlh, 0),
genlmsg_attrdata (gnlh, 0),
genlmsg_attrlen (gnlh, 0),
NULL);
if (!attrs[NL80211_ATTR_WOWLAN_TRIGGERS])
@ -363,7 +363,7 @@ wifi_nl80211_set_wake_on_wlan (NMWifiUtils *data, NMSettingWirelessWakeOnWLan wo
if (NM_FLAGS_HAS (wowl, NM_SETTING_WIRELESS_WAKE_ON_WLAN_RFKILL_RELEASE))
NLA_PUT_FLAG (msg, NL80211_WOWLAN_TRIG_RFKILL_RELEASE);
nla_nest_end(msg, triggers);
nla_nest_end (msg, triggers);
err = nl80211_send_and_recv (self, msg, NULL, NULL);