=================================================================== RCS file: /cvs/mandoc/compat_ohash.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- mandoc/compat_ohash.c 2012/06/09 11:00:13 1.1 +++ mandoc/compat_ohash.c 2014/01/04 14:09:28 1.2 @@ -8,7 +8,7 @@ int dummy; #else -/* $OpenBSD: compat_ohash.c,v 1.1 2012/06/09 11:00:13 kristaps Exp $ */ +/* $OpenBSD: compat_ohash.c,v 1.2 2014/01/04 14:09:28 schwarze Exp $ */ #include #include @@ -17,7 +17,7 @@ int dummy; #include "compat_ohash.h" struct _ohash_record { - u_int32_t hv; + uint32_t hv; const char *p; }; @@ -27,7 +27,7 @@ struct _ohash_record { /* Don't bother changing the hash table if the change is small enough. */ #define MINSIZE (1UL << 4) #define MINDELETED 4 -/* $OpenBSD: compat_ohash.c,v 1.1 2012/06/09 11:00:13 kristaps Exp $ */ +/* $OpenBSD: compat_ohash.c,v 1.2 2014/01/04 14:09:28 schwarze Exp $ */ /* ex:ts=8 sw=4: */ @@ -328,7 +328,7 @@ ohash_qlookup(struct ohash *h, const char *s) unsigned int ohash_qlookupi(struct ohash *h, const char *s, const char **e) { - u_int32_t hv; + uint32_t hv; hv = ohash_interval(s, e); return ohash_lookup_interval(h, s, *e, hv);