From f8b240d7dbaf90cf9d53df0a82153ed731918c29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Wed, 25 May 2005 09:18:31 +0000 Subject: fixed stupid allocation bug svn path=/trunk/externals/zexy/; revision=3085 --- src/fifop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/fifop.c b/src/fifop.c index d8617ee..f246bfc 100644 --- a/src/fifop.c +++ b/src/fifop.c @@ -75,7 +75,7 @@ static t_fifop_prioritylist*fifop_genprioritylist(t_fifop*x, t_float priority) dummy=result; /* dummy points to the FIFO-before the one we want to insert */ } /* create a new priority list */ - result = (t_fifop_prioritylist*)getbytes(sizeof( t_fifop_prioritylist*)); + result = (t_fifop_prioritylist*)getbytes(sizeof( t_fifop_prioritylist)); result->priority=priority; result->fifo_start=0; result->next=0; -- cgit v1.2.1