svn commit: r320411 - head/sys/arm64/include

Andrew Turner andrew at FreeBSD.org
Tue Jun 27 16:30:03 UTC 2017


Author: andrew
Date: Tue Jun 27 16:30:01 2017
New Revision: 320411
URL: https://svnweb.freebsd.org/changeset/base/320411

Log:
  Add parentheses missed in r320388
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/arm64/include/endian.h

Modified: head/sys/arm64/include/endian.h
==============================================================================
--- head/sys/arm64/include/endian.h	Tue Jun 27 16:05:11 2017	(r320410)
+++ head/sys/arm64/include/endian.h	Tue Jun 27 16:30:01 2017	(r320411)
@@ -106,12 +106,12 @@ __bswap16_var(__uint16_t v)
 
 #define	__bswap16(x)	\
     ((__uint16_t)(__builtin_constant_p(x) ?	\
-     __bswap16_constant((__uint16_t)x) :	\
+     __bswap16_constant((__uint16_t)(x)) :	\
      __bswap16_var(x)))
 
 #define	__bswap32(x)	\
     ((__uint32_t)(__builtin_constant_p(x) ? 	\
-     __bswap32_constant((__uint32_t)x) :	\
+     __bswap32_constant((__uint32_t)(x)) :	\
      __bswap32_var(x)))
 
 #else


More information about the svn-src-all mailing list