Remove a variable that is set but unused.
git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@495 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
@@ -1756,9 +1756,9 @@ static void add_numeric_list (NumericList *item)
|
||||
|
||||
static NumericList *find_numeric_list (int numeric)
|
||||
{
|
||||
NumericList *tmp, *last = NULL;
|
||||
NumericList *tmp;
|
||||
|
||||
for (tmp = numeric_list; tmp; last = tmp, tmp = tmp->next)
|
||||
for (tmp = numeric_list; tmp; tmp = tmp->next)
|
||||
{
|
||||
if (tmp->numeric == numeric)
|
||||
return tmp;
|
||||
|
||||
Reference in New Issue
Block a user