diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-10 07:27:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-10 07:27:43 +0000 |
commit | 9e7b57ade6273cbd06e5aed1ed69dc20ba4cc058 (patch) | |
tree | 313b0e57f7e0b6c7dc0fd329a63ac2d13b55e9bd /sys/lib/libkern/htonl.c | |
parent | 447b309043ea6f3bfca72e16ad920046e2973d5c (diff) |
64 bit clean
Diffstat (limited to 'sys/lib/libkern/htonl.c')
-rw-r--r-- | sys/lib/libkern/htonl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/htonl.c b/sys/lib/libkern/htonl.c index 971757f2028..eba75f7e2c6 100644 --- a/sys/lib/libkern/htonl.c +++ b/sys/lib/libkern/htonl.c @@ -1,4 +1,4 @@ -/* $NetBSD: htonl.c,v 1.6 1995/10/07 09:26:26 mycroft Exp $ */ +/* $NetBSD: htonl.c,v 1.6.6.1 1996/05/29 23:47:55 cgd Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. @@ -6,7 +6,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$NetBSD: htonl.c,v 1.6 1995/10/07 09:26:26 mycroft Exp $"; +static char *rcsid = "$NetBSD: htonl.c,v 1.6.6.1 1996/05/29 23:47:55 cgd Exp $"; #endif #include <sys/types.h> @@ -22,7 +22,7 @@ htonl(x) #if BYTE_ORDER == LITTLE_ENDIAN u_char *s = (u_char *)&y; - return s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3]; + return (u_int32_t)(s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3]); #else return y; #endif |