From 9d07027553aeb5241a81196bcdbba2ee8f881035 Mon Sep 17 00:00:00 2001 From: Yorhel <git@yorhel.nl> Date: Tue, 12 May 2009 18:39:00 +0200 Subject: [PATCH] calc.c: Removed an unused variable in calc_item() --- src/calc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/calc.c b/src/calc.c index a09ab6c..97f1c48 100644 --- a/src/calc.c +++ b/src/calc.c @@ -87,7 +87,6 @@ void calc_leavepath() { int calc_item(struct dir *par, char *name) { struct dir *t, *d; struct stat fs; - int i; if(name[0] == '.' && (name[1] == '\0' || (name[1] == '.' && name[2] == '\0'))) return 0; -- GitLab