From 600890067c40e1846398db373b9c38b6fe9a16a6 Mon Sep 17 00:00:00 2001 From: Patrick McHardy Date: Tue, 26 Apr 2016 14:16:58 +0100 Subject: libnftnl: constify object arguments to various functions flow table support needs constant object arguments to printing functions to avoid ugly casts. While at it, also constify object arguments to message construction, destructor and a few helper functions. Signed-off-by: Patrick McHardy Signed-off-by: Pablo Neira Ayuso --- include/libnftnl/udata.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/libnftnl/udata.h') diff --git a/include/libnftnl/udata.h b/include/libnftnl/udata.h index 312ce26..d36cef7 100644 --- a/include/libnftnl/udata.h +++ b/include/libnftnl/udata.h @@ -13,7 +13,7 @@ struct nftnl_udata_buf; /* nftnl_udata_buf */ struct nftnl_udata_buf *nftnl_udata_buf_alloc(uint32_t data_size); -void nftnl_udata_buf_free(struct nftnl_udata_buf *buf); +void nftnl_udata_buf_free(const struct nftnl_udata_buf *buf); uint32_t nftnl_udata_buf_len(const struct nftnl_udata_buf *buf); void *nftnl_udata_buf_data(const struct nftnl_udata_buf *buf); void nftnl_udata_buf_put(struct nftnl_udata_buf *buf, const void *data, -- cgit v1.2.3