From 72a20a8b82dee4c1f29a1adf69a1ffe9b8d76fc5 Mon Sep 17 00:00:00 2001 From: Tim Cava Date: Sun, 2 Mar 2014 21:25:49 +0000 Subject: [PATCH] Remove a variable that is set but unused. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@497 13b04d17-f746-0410-82c6-800466cd88b0 --- source/input.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/input.c b/source/input.c index c56e0f6..86f8564 100644 --- a/source/input.c +++ b/source/input.c @@ -2203,8 +2203,7 @@ char *booya = NULL; char *path = NULL; char *path2, *freeme; glob_t globbers; -int numglobs = 0, i; -int globtype = GLOB_MARK; +int globtype = GLOB_MARK, i; #if defined(__EMX__) || defined(WINNT) if (possible && *possible) @@ -2424,7 +2423,7 @@ int globtype = GLOB_MARK; if (!path2) path2 = path; memset(&globbers, 0, sizeof(glob_t)); - numglobs = glob(path2, globtype, NULL, &globbers); + glob(path2, globtype, NULL, &globbers); for (i = 0; i < globbers.gl_pathc; i++) { if (strchr(globbers.gl_pathv[i], ' '))