diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-11-25 14:44:27 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-11-25 14:44:27 +0000 |
commit | e77ccb40232495c549ad74c8d829f640d635e9a8 (patch) | |
tree | aead454045b18e4373e1fb0fe06b6b5fc9f891fa /sys/arch/i386 | |
parent | f46d7e0a36dac313a8a840a177ae21609a996459 (diff) |
Oops
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/include/endian.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/endian.h b/sys/arch/i386/include/endian.h index 2be9c3d4eba..e7eb3be5284 100644 --- a/sys/arch/i386/include/endian.h +++ b/sys/arch/i386/include/endian.h @@ -1,4 +1,4 @@ -/* $OpenBSD: endian.h,v 1.4 1996/11/25 13:11:24 niklas Exp $ */ +/* $OpenBSD: endian.h,v 1.5 1996/11/25 14:44:26 niklas Exp $ */ /* $NetBSD: endian.h,v 1.16 1995/06/01 17:19:18 mycroft Exp $ */ /* @@ -72,7 +72,7 @@ __END_DECLS #if defined(_KERNEL) && !defined(I386_CPU) #define __byte_swap_int32_variable(x) \ -({ register u_int32 __x = (x); \ +({ register u_int32_t __x = (x); \ __asm ("bswap %1" \ : "=r" (__x) \ : "0" (__x)); \ |