| # | Line 518 | Line 518 | oputm(r) /* print modifier */ | |
|---|---|---|
| 518 | register RAY *r; | |
| 519 | { | |
| 520 | if (r->ro != NULL) | |
| 521 | < | fputs(objptr(r->ro->omod)->oname, stdout); |
| 521 | > | if (r->ro->omod != OVOID) |
| 522 | > | fputs(objptr(r->ro->omod)->oname, stdout); |
| 523 | > | else |
| 524 | > | fputs(VOIDID, stdout); |
| 525 | else | |
| 526 | putchar('*'); | |
| 527 | putchar('\t'); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |