| # | Line 75 | Line 75 | str2resolu(rp, buf) /* convert resolution line to str | |
|---|---|---|
| 75 | register RESOLU *rp; | |
| 76 | char *buf; | |
| 77 | { | |
| 78 | < | char *xndx, *yndx; |
| 78 | > | register char *xndx, *yndx; |
| 79 | register char *cp; | |
| 80 | ||
| 81 | if (buf == NULL) | |
| 82 | return(0); | |
| 83 | xndx = yndx = NULL; | |
| 84 | < | for (cp = buf+1; *cp; cp++) |
| 84 | > | for (cp = buf; *cp; cp++) |
| 85 | if (*cp == 'X') | |
| 86 | xndx = cp; | |
| 87 | else if (*cp == 'Y') | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |