From bca8ce0a1c442daed9682ba7c469af18e1e7c1b6 Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Thu, 5 Jun 2008 14:16:16 +0000 Subject: [PATCH] Fix call to RESIZE. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@47 13b04d17-f746-0410-82c6-800466cd88b0 --- source/functions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/functions.c b/source/functions.c index b5ffe8e..ea64c8c 100644 --- a/source/functions.c +++ b/source/functions.c @@ -984,7 +984,7 @@ BuiltInDllFunctions *dll = NULL; if (++(*cnt) == matches_size) { matches_size += 5; - matches = (char **) RESIZE(matches, char *, matches_size); + RESIZE(matches, char *, matches_size); } } }