Hello,
Another small ii patch. Originally add_channel does
if(!channels) channels = c;
else {
c->next = channels;
channels = c;
}
but the check to see if channels is NULL is not needed. This patch
changes it to just
c->next = channels;
channels = c;
If channels is NULL, c will be the last element and c->next will be NULL anyway.
-emg
This archive was generated by hypermail 2.2.0 : Sat Jul 17 2010 - 00:00:02 CEST