From: Eli Zaretskii Date: Wed, 31 Aug 2016 17:19:42 +0000 (+0300) Subject: * lib-src/etags.c (invalidate_nodes): Fix another thinko. X-Git-Tag: emacs-26.0.90~1664 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2030ddbd15b538a5dc2fc0548afc83941f67957a;p=emacs.git * lib-src/etags.c (invalidate_nodes): Fix another thinko. --- diff --git a/lib-src/etags.c b/lib-src/etags.c index 77dcaf030d6..3620b0fd321 100644 --- a/lib-src/etags.c +++ b/lib-src/etags.c @@ -2224,7 +2224,7 @@ invalidate_nodes (fdesc *badfdp, node **npp) /* Push all the left children on the stack. */ while (np->left != NULL) { - push_node (np->left, &stack); + push_node (np, &stack); np = np->left; } /* Invalidate this node. */