From: sin Date: Wed, 22 Oct 2014 15:25:59 +0000 (+0100) Subject: Remove unused vars X-Git-Tag: v1.0~92^2~164 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=ce1fcfc7b8777d3d3459fad11d4941cc22f4eb9b;p=nnn.git Remove unused vars --- diff --git a/noice.c b/noice.c index 42a1d0da..21f4e42e 100644 --- a/noice.c +++ b/noice.c @@ -485,8 +485,6 @@ void browse(const char *ipath, const char *ifilter) { DIR *dirp; - int dfd; - struct dirent *dp; struct entry *dents; int i, n, cur; int r, ret; @@ -498,10 +496,6 @@ browse(const char *ipath, const char *ifilter) cur = 0; begin: - /* Path and filter should be malloc(3)-ed strings at all times */ - n = 0; - dents = NULL; - dirp = opendir(path); if (dirp == NULL) { printwarn(); @@ -525,7 +519,6 @@ begin: for (;;) { int nlines; - int maxlen; int odd; char *pathnew; char *name;