[PD-cvs] externals/zexy/src matchbox.c,1.4,1.5

musil tmusil at users.sourceforge.net
Thu Jul 5 16:50:40 CEST 2007


Update of /cvsroot/pure-data/externals/zexy/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31680/zexy/src

Modified Files:
	matchbox.c 
Log Message:
declaration must be at start of a block

Index: matchbox.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/matchbox.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** matchbox.c	10 May 2007 13:21:21 -0000	1.4
--- matchbox.c	5 Jul 2007 14:50:37 -0000	1.5
***************
*** 76,79 ****
--- 76,80 ----
  static t_listlist* addlistlist(t_listlist*list, int argc, t_atom*argv) {
    t_listlist*ll=(t_listlist*)getbytes(sizeof(t_listlist));
+   t_listlist*lp=0;
    ll->next=0;
    ll->argc=argc;
***************
*** 85,89 ****
    }
    
!   t_listlist*lp=list;
    while(0!=lp->next)lp=lp->next;
    lp->next=ll;
--- 86,90 ----
    }
    
!   lp=list;
    while(0!=lp->next)lp=lp->next;
    lp->next=ll;





More information about the Pd-cvs mailing list