aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/db
diff options
context:
space:
mode:
authorEd Schouten <ed@FreeBSD.org>2012-02-12 18:29:56 +0000
committerEd Schouten <ed@FreeBSD.org>2012-02-12 18:29:56 +0000
commit6b99842ada7bb3bd24c5fd4541e046994733757b (patch)
treeac73d0fee5bb41748009d87a44b179ab6b7d87bc /lib/libc/db
parent5a197b461236c689211780e2f74e4c7d4d313fe9 (diff)
downloadsrc-6b99842ada7bb3bd24c5fd4541e046994733757b.tar.gz
src-6b99842ada7bb3bd24c5fd4541e046994733757b.zip
Globally replace u_int*_t from (non-contributed) man pages.
The reasoning behind this, is that if we are consistent in our documentation about the uint*_t stuff, people will be less tempted to write new code that uses the non-standard types. I am not going to bump the man page dates, as these changes can be considered style nits. The meaning of the man pages is unaffected. MFC after: 1 month
Notes
Notes: svn path=/head/; revision=231564
Diffstat (limited to 'lib/libc/db')
-rw-r--r--lib/libc/db/man/hash.32
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/db/man/hash.3 b/lib/libc/db/man/hash.3
index 133885d841c9..a2a8bca65c14 100644
--- a/lib/libc/db/man/hash.3
+++ b/lib/libc/db/man/hash.3
@@ -65,7 +65,7 @@ typedef struct {
u_int ffactor;
u_int nelem;
u_int cachesize;
- u_int32_t (*hash)(const void *, size_t);
+ uint32_t (*hash)(const void *, size_t);
int lorder;
} HASHINFO;
.Ed