dect
/
linux-2.6
Archived
13
0
Fork 0

team: pass NULL to __team_option_inst_add() instead of 0

Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jiri Pirko 2012-06-19 05:54:15 +00:00 committed by David S. Miller
parent 01048d9a29
commit f88725ffb0
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ static int __team_option_inst_add_option(struct team *team,
int err;
if (!option->per_port) {
err = __team_option_inst_add(team, option, 0);
err = __team_option_inst_add(team, option, NULL);
if (err)
goto inst_del_option;
}