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
This commit is contained in:
Tim Cava
2014-03-02 21:09:37 +00:00
parent 8d5882a9ef
commit deb1c71b8c

View File

@@ -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;