summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/nft-flowtable-add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/nft-flowtable-add.c b/examples/nft-flowtable-add.c
index bd6cd0f..8363027 100644
--- a/examples/nft-flowtable-add.c
+++ b/examples/nft-flowtable-add.c
@@ -33,7 +33,7 @@ static struct nftnl_flowtable *flowtable_add_parse(int argc, char *argv[])
nftnl_flowtable_set_u32(t, NFTNL_FLOWTABLE_HOOKNUM, hooknum);
nftnl_flowtable_set_u32(t, NFTNL_FLOWTABLE_PRIO, atoi(argv[5]));
}
- nftnl_flowtable_set_array(t, NFTNL_FLOWTABLE_DEVICES, dev_array);
+ nftnl_flowtable_set(t, NFTNL_FLOWTABLE_DEVICES, dev_array);
return t;
}