2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 06:15:47 +00:00

netdev-tc-offloads: Remove redundant brackets

Signed-off-by: Paul Blakey <paulb@mellanox.com>
Reviewed-by: Roi Dayan <roid@mellanox.com>
Signed-off-by: Simon Horman <simon.horman@netronome.com>
This commit is contained in:
Paul Blakey
2017-11-21 14:40:39 +02:00
committed by Simon Horman
parent d6118e6289
commit e13bbbab3c

View File

@@ -1059,7 +1059,7 @@ static void
nl_msg_put_act_pedit(struct ofpbuf *request, struct tc_pedit *parm,
struct tc_pedit_key_ex *ex)
{
size_t ksize = sizeof *parm + (parm->nkeys * sizeof(struct tc_pedit_key));
size_t ksize = sizeof *parm + parm->nkeys * sizeof(struct tc_pedit_key);
size_t offset, offset_keys_ex, offset_key;
int i;