| # | Line 37 | Line 37 | static lut_hashf_t cvhash; | |
|---|---|---|
| 37 | static unsigned long | |
| 38 | cvhash(p) /* hash an encoded vertex */ | |
| 39 | //MCVERT *cvp; | |
| 40 | < | void *p; |
| 40 | > | const void *p; |
| 41 | { | |
| 42 | < | MCVERT *cvp = p; |
| 42 | > | const MCVERT *cvp = (const MCVERT *)p; |
| 43 | unsigned long hval; | |
| 44 | ||
| 45 | if (!(cvp->fl & MT_V)) | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |