From af1641be4ed0b8462fa8b69dae6ac2be120e98a4 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 9 May 2021 23:09:09 -0400 Subject: [PATCH] empty implementation of nctree_goto() #1643 --- src/lib/tree.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/tree.c b/src/lib/tree.c index 9b274aa4c..6cb4b69d7 100644 --- a/src/lib/tree.c +++ b/src/lib/tree.c @@ -461,8 +461,10 @@ void* nctree_focused(nctree* n){ return n->curitem->curry; } -/* void* nctree_goto(nctree* n, const unsigned* spec, int* failspec){ + (void)n; + (void)spec; + (void)failspec; // FIXME + return NULL; } -*/