noice

small file browser
git clone git://git.2f30.org/noice
Log | Files | Refs | README | LICENSE

commit 1183a9428fa3d9462fd2272c8963f43b073d3d87
parent b39da16920b46dec42a5c3059cfeb1a2612667ee
Author: sin <sin@2f30.org>
Date:   Wed, 22 Oct 2014 16:56:31 +0100

Save one level of indentation

Diffstat:
Mnoice.c | 29++++++++++++++---------------
1 file changed, 14 insertions(+), 15 deletions(-)

diff --git a/noice.c b/noice.c @@ -672,22 +672,21 @@ nochange: if (testopendir(tmp) == 0) { printwarn(); goto nochange; - } else { - free(path); - path = xrealpath(tmp); - free(tmp); - free(filter); - filter = xstrdup(ifilter); /* Reset filter */ - /* Forget history */ - while (!SLIST_EMPTY(&histhead)) { - hist = SLIST_FIRST(&histhead); - SLIST_REMOVE_HEAD(&histhead, entry); - free(hist); - } - DPRINTF_S(path); - cur = 0; - goto out; } + free(path); + path = xrealpath(tmp); + free(tmp); + free(filter); + filter = xstrdup(ifilter); /* Reset filter */ + /* Forget history */ + while (!SLIST_EMPTY(&histhead)) { + hist = SLIST_FIRST(&histhead); + SLIST_REMOVE_HEAD(&histhead, entry); + free(hist); + } + DPRINTF_S(path); + cur = 0; + goto out; } }