Hi,
Line 563 stochatic.cpp:
for (cSample=cSample->next;cSample!=NULL;) {
will work better like this:
for (;cSample!=NULL;cSample=cSample->next) {
Best regards.
Logged In: YES user_id=555300 Originator: NO
Quite right, the trunk is fixed.
Okan
Log in to post a comment.
Logged In: YES
user_id=555300
Originator: NO
Quite right, the trunk is fixed.
Okan