| # | Line 286 | Line 286 | trace_contrib(RAY *r) | |
|---|---|---|
| 286 | if ((bval = evalue(mp->binv)) <= -.5) /* and get bin number */ | |
| 287 | return; /* silently ignore negatives */ | |
| 288 | if ((bn = (int)(bval + .5)) >= mp->nbins) { | |
| 289 | < | error(WARNING, "bad bin number (ignored)"); |
| 289 | > | sprintf(errmsg, "bad bin number (%d ignored)", bn); |
| 290 | > | error(WARNING, errmsg); |
| 291 | return; | |
| 292 | } | |
| 293 | raycontrib(contr, r, PRIMARY); /* compute coefficient */ | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |