oops, else in wrong spot

This commit is contained in:
Bill Currie 2003-09-12 18:35:10 +00:00
parent 9d8569584e
commit c8d405dbcb

View file

@ -102,9 +102,9 @@ RunThreadsOn (threadfunc_t *func)
fprintf (stderr, "pthread_join failed");
free (l[i]);
}
}
} else
#endif
else {
{
lightinfo_t *l = malloc (sizeof (lightinfo_t));
func (l);
}