Commit ecf4a24c authored by Wan Jiabing's avatar Wan Jiabing Committed by David S. Miller
Browse files

net: sched: avoid newline at end of message in NL_SET_ERR_MSG_MOD



Fix following coccicheck warning:
./net/sched/act_api.c:277:7-49: WARNING avoid newline at end of message
in NL_SET_ERR_MSG_MOD

Signed-off-by: default avatarWan Jiabing <wanjiabing@vivo.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 404ba13a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -274,7 +274,7 @@ static int tcf_action_offload_add_ex(struct tc_action *action,
	err = tc_setup_action(&fl_action->action, actions);
	if (err) {
		NL_SET_ERR_MSG_MOD(extack,
				   "Failed to setup tc actions for offload\n");
				   "Failed to setup tc actions for offload");
		goto fl_err;
	}