blob: 4a7c544a151bda91f62a0aa54002e7f336377807 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
$NetBSD: patch-ae,v 1.1.1.1 2001/03/14 12:10:22 agc Exp $
--- lookup.c.orig Mon Oct 26 23:24:20 1998
+++ lookup.c Mon Oct 26 23:25:41 1998
@@ -212,22 +212,22 @@
if (dp->word == (char *) -1)
dp->word = NULL;
else
- dp->word = &hashstrings [ (int)(dp->word) ];
+ dp->word = &hashstrings [ (PTRSIZE)(dp->word) ];
if (dp->next == (struct dent *) -1)
dp->next = NULL;
else
- dp->next = &hashtbl [ (int)(dp->next) ];
+ dp->next = &hashtbl [ (PTRSIZE)(dp->next) ];
}
}
for (i = numsflags + numpflags, entry = sflaglist; --i >= 0; entry++)
{
if (entry->stripl)
- entry->strip = (ichar_t *) &hashstrings[(int) entry->strip];
+ entry->strip = (ichar_t *) &hashstrings[(PTRSIZE) entry->strip];
else
entry->strip = NULL;
if (entry->affl)
- entry->affix = (ichar_t *) &hashstrings[(int) entry->affix];
+ entry->affix = (ichar_t *) &hashstrings[(PTRSIZE) entry->affix];
else
entry->affix = NULL;
}
|