manager: Fix build

Attached, but basically replace 2-argument call to l_genl_msg_new
with what seems rather likely was intended instead: l_genl_msg_new_sized.
This commit is contained in:
Will Dietz 2019-08-20 21:27:45 -05:00 committed by Denis Kenzior
parent 9f1875fd3d
commit 690c9c2045
1 changed files with 1 additions and 1 deletions

View File

@ -722,7 +722,7 @@ bool manager_init(struct l_genl_family *in,
return false;
}
msg = l_genl_msg_new(NL80211_CMD_GET_WIPHY, 128);
msg = l_genl_msg_new_sized(NL80211_CMD_GET_WIPHY, 128);
l_genl_msg_append_attr(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP, 0, NULL);
wiphy_dump = l_genl_family_dump(nl80211, msg,
manager_wiphy_dump_callback,