diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-03-17 21:33:05 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2009-03-17 21:33:05 +0000 |
commit | e808cb2d80014239e6e284a221e0e0eafefadc85 (patch) | |
tree | b9270ce5a547aec238cb5f548012dc6697a4e7ac /lib/libc | |
parent | baa60127afbab8ef4c364fa2357bd541eba4efdb (diff) |
correct argument type for swap64(); from Thomas Pfaff
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/net/byteorder.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/net/byteorder.3 b/lib/libc/net/byteorder.3 index 7f22794caa4..6625ea14424 100644 --- a/lib/libc/net/byteorder.3 +++ b/lib/libc/net/byteorder.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: byteorder.3,v 1.15 2007/05/31 19:19:30 jmc Exp $ +.\" $OpenBSD: byteorder.3,v 1.16 2009/03/17 21:33:04 jmc Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -27,7 +27,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: March 17 2009 $ .Dt BYTEORDER 3 .Os .Sh NAME @@ -86,7 +86,7 @@ .Ft u_int16_t .Fn letoh16 "u_int16_t little16" .Ft u_int64_t -.Fn swap64 "u_int32_t val64" +.Fn swap64 "u_int64_t val64" .Ft u_int32_t .Fn swap32 "u_int32_t val32" .Ft u_int16_t |