From: Brian Norris Date: Mon, 8 Oct 2018 17:51:26 +0000 (-0700) Subject: iw: fix enum warnings X-Git-Tag: v5.0~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=befb32dc97cf5fc59bf551089c224d29e195aa9a;p=thirdparty%2Fiw.git iw: fix enum warnings clang warns about the misuse of enums: reg.c:246:26: warning: implicit conversion from enumeration type 'enum command_identify_by' to different enumeration type 'enum id_input' [-Wenum-conversion] err = handle_cmd(state, CIB_NONE, 2, dump_args); ~~~~~~~~~~ ^~~~~~~~ info.c:645:26: warning: implicit conversion from enumeration type 'enum command_identify_by' to different enumeration type 'enum id_input' [-Wenum-conversion] err = handle_cmd(state, CIB_NONE, 2, feat_args); ~~~~~~~~~~ ^~~~~~~~ Signed-off-by: Brian Norris Signed-off-by: Johannes Berg --- diff --git a/info.c b/info.c index fbf3ee0..d0577e3 100644 --- a/info.c +++ b/info.c @@ -718,7 +718,7 @@ static int handle_info(struct nl80211_state *state, char *feat_args[] = { "features", "-q" }; int err; - err = handle_cmd(state, CIB_NONE, 2, feat_args); + err = handle_cmd(state, II_NONE, 2, feat_args); if (!err && nl80211_has_split_wiphy) { nla_put_flag(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP); nlmsg_hdr(msg)->nlmsg_flags |= NLM_F_DUMP; diff --git a/reg.c b/reg.c index cadff38..a2368df 100644 --- a/reg.c +++ b/reg.c @@ -243,7 +243,7 @@ static int handle_reg_get(struct nl80211_state *state, char *dump_args[] = { "reg", "dump" }; int err; - err = handle_cmd(state, CIB_NONE, 2, dump_args); + err = handle_cmd(state, II_NONE, 2, dump_args); /* * dump might fail since it's not supported on older kernels, * in that case the handler is still registered already