changeset 1682:64316ca2bc9b

Remove redundant list assignment in ccwrap that screws up ordering and puts the -L entries in the wrong order.
author Rob Landley <rob@landley.net>
date Fri, 05 Sep 2014 23:54:01 -0500
parents 7bb5090abde9
children f13b8fae1206
files sources/toys/ccwrap.c
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/sources/toys/ccwrap.c	Thu Sep 04 22:19:08 2014 -0500
+++ b/sources/toys/ccwrap.c	Fri Sep 05 23:54:01 2014 -0500
@@ -124,8 +124,6 @@
     (*list)->prev->next = new;
     (*list)->prev = new;
   } else *list = new->next = new->prev = new;
-
-  *list = new;
 }
 
 // Some compiler versions don't provide separate T and S versions of begin/end,