diff options
Diffstat (limited to 'lib/libkeynote/auxil.c')
-rw-r--r-- | lib/libkeynote/auxil.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libkeynote/auxil.c b/lib/libkeynote/auxil.c index 921502870fe..2e9006f405a 100644 --- a/lib/libkeynote/auxil.c +++ b/lib/libkeynote/auxil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auxil.c,v 1.4 2000/05/17 05:38:18 angelos Exp $ */ +/* $OpenBSD: auxil.c,v 1.5 2000/10/03 01:33:55 angelos Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu) * @@ -343,7 +343,7 @@ int keynote_add_htable(struct assertion *as, int which) { char *hashname; - u_int i; + unsigned int i; if (as == (struct assertion *) NULL) { @@ -515,8 +515,8 @@ keynote_free_assertion(struct assertion *as) free(as); } -u_int -keynote_stringhash(char *name, u_int size) +unsigned int +keynote_stringhash(char *name, unsigned int size) { unsigned int hash_val = 0; unsigned int i; |