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

Andrew Turner andrew at FreeBSD.org
Wed Jul 8 16:18:29 UTC 2015


Author: andrew
Date: Wed Jul  8 16:18:28 2015
New Revision: 285274
URL: https://svnweb.freebsd.org/changeset/base/285274

Log:
  Correctly set __WCHAR_MIN, there is no __UINT_MIN, it's 0.
  
  Sponsored by:	ABT Systems Ltd

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

Modified: head/sys/arm64/include/_types.h
==============================================================================
--- head/sys/arm64/include/_types.h	Wed Jul  8 16:16:44 2015	(r285273)
+++ head/sys/arm64/include/_types.h	Wed Jul  8 16:18:28 2015	(r285274)
@@ -94,7 +94,7 @@ typedef	__uint64_t	__vm_pindex_t;
 typedef	__uint64_t	__vm_size_t;
 typedef	unsigned int	___wchar_t;
 
-#define	__WCHAR_MIN	__UINT_MIN	/* min value for a wchar_t */
+#define	__WCHAR_MIN	0		/* min value for a wchar_t */
 #define	__WCHAR_MAX	__UINT_MAX	/* max value for a wchar_t */
 
 /*


More information about the svn-src-all mailing list