From 5b2f673ac19608cfbb5d04a47084d1d7b788d52c Mon Sep 17 00:00:00 2001 From: Stefan Gula Date: Thu, 19 Dec 2024 10:26:56 +0100 Subject: [PATCH] cdefs: Removal of unnecessary variable name defintion This patch aligns the cdefs definition with the rest of the file structure Signed-off-by: Stefan Gula --- cffi/cdefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cffi/cdefs.h b/cffi/cdefs.h index e48a817..fad8d54 100644 --- a/cffi/cdefs.h +++ b/cffi/cdefs.h @@ -1308,7 +1308,7 @@ struct lyd_leafref_links_rec { const struct lyd_node_term **target_nodes; }; -LY_ERR lyd_leafref_get_links(const struct lyd_node_term *e, const struct lyd_leafref_links_rec **); +LY_ERR lyd_leafref_get_links(const struct lyd_node_term *, const struct lyd_leafref_links_rec **); LY_ERR lyd_leafref_link_node_tree(struct lyd_node *); const char *lyplg_ext_stmt2str(enum ly_stmt stmt); const struct lysp_module *lyplg_ext_parse_get_cur_pmod(const struct lysp_ctx *);