| # | Line 103 | Line 103 | register char *s; | |
|---|---|---|
| 103 | register int h = 0; | |
| 104 | ||
| 105 | while (*s) | |
| 106 | < | h = (h<<1 & 0x7fff) ^ *s++; |
| 106 | > | h = (h<<1 & 0x7fff) ^ (*s++ & 0xff); |
| 107 | return(h); | |
| 108 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |