From 199aff8e6d0414a4bceedc502954b8e9cfe9ec18 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 6 Feb 2016 23:34:00 +0000 Subject: Correctly annotate unused variables with a macro --- src/nsgenbind-ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nsgenbind-ast.c') diff --git a/src/nsgenbind-ast.c b/src/nsgenbind-ast.c index 9be8bc7..49732a0 100644 --- a/src/nsgenbind-ast.c +++ b/src/nsgenbind-ast.c @@ -160,7 +160,7 @@ genbind_node_foreach_type(struct genbind_node *node, static int genbind_enumerate_node(struct genbind_node *node, void *ctx) { - node = node; + UNUSED(node); (*((int *)ctx))++; return 0; } -- cgit v1.2.3