The previous fix produced an array in which the values were one off.

This has been fixed.
This commit is contained in:
keie 1985-01-11 13:42:51 +00:00
parent c61ea7ee53
commit 959138af97

View file

@ -153,7 +153,7 @@ struct w3 setp1(count) {
return(myp) ;
}
myp = setp1(count-1) ;
myp.w3_a[count-1] = 99-count ;
myp.w3_a[count-1] = 99-count-1 ;
return(myp) ;
}