| # | Line 199 | Line 199 | int orig, nobjs; | |
|---|---|---|
| 199 | if ((os = ostable[n]) == NULL) | |
| 200 | continue; | |
| 201 | while ((i = *os++) > 0) | |
| 202 | < | while (i--) { |
| 203 | < | s = *os; |
| 204 | < | if (s >= orig && s < orig+nobjs && |
| 202 | > | do |
| 203 | > | if ((s = *os++) >= orig && s < orig+nobjs && |
| 204 | ismodifier(objptr(s)->otype)) | |
| 205 | return(1); | |
| 206 | < | os++; |
| 208 | < | } |
| 206 | > | while (--i); |
| 207 | } | |
| 208 | return(0); | |
| 209 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |