diff options
author | Ed Schouten <ed@FreeBSD.org> | 2012-02-12 18:29:56 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2012-02-12 18:29:56 +0000 |
commit | 6b99842ada7bb3bd24c5fd4541e046994733757b (patch) | |
tree | ac73d0fee5bb41748009d87a44b179ab6b7d87bc /share/man/man4/ng_async.4 | |
parent | 5a197b461236c689211780e2f74e4c7d4d313fe9 (diff) |
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 'share/man/man4/ng_async.4')
-rw-r--r-- | share/man/man4/ng_async.4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man4/ng_async.4 b/share/man/man4/ng_async.4 index bb6b0be929d5..2349cb3c6fac 100644 --- a/share/man/man4/ng_async.4 +++ b/share/man/man4/ng_async.4 @@ -118,9 +118,9 @@ Sets the node configuration, which is described by a .Bd -literal -offset 4n struct ng_async_cfg { u_char enabled; /* Turn encoding on/off */ - u_int16_t amru; /* Max receive async frame len */ - u_int16_t smru; /* Max receive sync frame len */ - u_int32_t accm; /* ACCM encoding */ + uint16_t amru; /* Max receive async frame len */ + uint16_t smru; /* Max receive sync frame len */ + uint32_t accm; /* ACCM encoding */ }; .Ed .Pp |