Skip to content

Commit

Permalink
netdev-tc-offloads: Remove redundant brackets
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Blakey <paulb@mellanox.com>
Reviewed-by: Roi Dayan <roid@mellanox.com>
Signed-off-by: Simon Horman <simon.horman@netronome.com>
  • Loading branch information
Paul Blakey authored and shorman-netronome committed Nov 23, 2017
1 parent d6118e6 commit e13bbba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tc.c
Expand Up @@ -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;

Expand Down

0 comments on commit e13bbba

Please sign in to comment.