ayttm-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Ayttm-commits] CVS: ayttm/src llist.c,1.1,1.2 llist.h,1.1,1.2


From: Colin Leroy
Subject: Re: [Ayttm-commits] CVS: ayttm/src llist.c,1.1,1.2 llist.h,1.1,1.2
Date: Fri, 24 Jan 2003 11:42:07 +0100

On Fri, 24 Jan 2003 05:14:34 -0500 "Philip S Tellis
<address@hidden>" <address@hidden> wrote:

Hi Philip,

> +LList *l_list_prepend(LList * list, void *data)
> +{
> +     LList *n = malloc(sizeof(LList));
> +
> +     n->next = list;
> +     list->prev = n;
> +
> +     return n;
> +}

What do you do for data ? ;)
isn't there a n->data = data missing ?

Cheers,
-- 
Colin
http://dudusdl.sf.net/ : a free Puzzle Bubble clone




reply via email to

[Prev in Thread] Current Thread [Next in Thread]