From deb1c71b8cb1e77eba9f7e4504a2e0c7bb737c0e Mon Sep 17 00:00:00 2001 From: Tim Cava Date: Sun, 2 Mar 2014 21:09:37 +0000 Subject: [PATCH] Remove a variable that is set but unused. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@493 13b04d17-f746-0410-82c6-800466cd88b0 --- source/functions.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/functions.c b/source/functions.c index edc3bf1..14731d3 100644 --- a/source/functions.c +++ b/source/functions.c @@ -944,7 +944,6 @@ static BuiltInFunctions new; char **get_builtins(char *name, int *cnt) { -char *last_match = NULL; int matches_size = 5; int i = 0; int len; @@ -962,7 +961,6 @@ BuiltInDllFunctions *dll = NULL; { matches[*cnt] = NULL; malloc_strcpy(&(matches[*cnt]), built_in_functions[i].name); - last_match = matches[*cnt]; if (++(*cnt) == matches_size) { matches_size += 5;