Browse code

Fix typo

git-svn-id: file:///var/lib/svn/clamav-devel/trunk/clamav-devel@1364 77e5149b-7576-45b1-b177-96237e5ba77b

Nigel Horne authored on 2005/03/01 20:38:11
Showing 1 changed files
... ...
@@ -16,6 +16,9 @@
16 16
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 17
  *
18 18
  * $Log: line.c,v $
19
+ * Revision 1.8  2005/03/01 11:38:11  nigelhorne
20
+ * Fix typo
21
+ *
19 22
  * Revision 1.7  2004/12/08 20:07:23  nigelhorne
20 23
  * Fix compilation error on Solaris
21 24
  *
... ...
@@ -39,7 +42,7 @@
39 39
  *
40 40
  */
41 41
 
42
-static	char	const	rcsid[] = "$Id: line.c,v 1.7 2004/12/08 20:07:23 nigelhorne Exp $";
42
+static	char	const	rcsid[] = "$Id: line.c,v 1.8 2005/03/01 11:38:11 nigelhorne Exp $";
43 43
 
44 44
 #if HAVE_CONFIG_H
45 45
 #include "clamav-config.h"
... ...
@@ -60,7 +63,7 @@ static	char	const	rcsid[] = "$Id: line.c,v 1.7 2004/12/08 20:07:23 nigelhorne Ex
60 60
 line_t *
61 61
 lineCreate(const char *data)
62 62
 {
63
-	line_t *ret = (line_t *)li_malloc(sizeof(struct line));
63
+	line_t *ret = (line_t *)cli_malloc(sizeof(struct line));
64 64
 
65 65
 	if(ret == NULL)
66 66
 		return NULL;