Since there is no data to copy nl_msg_put_unspec_uninit() may be used directly, rather than via nl_msg_put_unspec().
Signed-off-by: Jarno Rajahalme <[email protected]> Acked-by: Joe Stringer <[email protected]> --- lib/netlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/netlink.c b/lib/netlink.c index ae4c72a..3da22a1 100644 --- a/lib/netlink.c +++ b/lib/netlink.c @@ -454,7 +454,7 @@ size_t nl_msg_start_nested(struct ofpbuf *msg, uint16_t type) { size_t offset = msg->size; - nl_msg_put_unspec(msg, type, NULL, 0); + nl_msg_put_unspec_uninit(msg, type, 0); return offset; } -- 2.1.4 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
