svn commit: r276660 - head/sys/sys
Kevin Lo
kevlo at FreeBSD.org
Sun Jan 4 15:26:03 UTC 2015
Author: kevlo
Date: Sun Jan 4 15:26:02 2015
New Revision: 276660
URL: https://svnweb.freebsd.org/changeset/base/276660
Log:
Change the type of blksize_t from uint32_t to a POSIX compliant int32_t
http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_types.h.html
Modified:
head/sys/sys/_types.h
Modified: head/sys/sys/_types.h
==============================================================================
--- head/sys/sys/_types.h Sun Jan 4 12:49:24 2015 (r276659)
+++ head/sys/sys/_types.h Sun Jan 4 15:26:02 2015 (r276660)
@@ -35,7 +35,7 @@
/*
* Standard type definitions.
*/
-typedef __uint32_t __blksize_t; /* file block size */
+typedef __int32_t __blksize_t; /* file block size */
typedef __int64_t __blkcnt_t; /* file block count */
typedef __int32_t __clockid_t; /* clock_gettime()... */
typedef __uint32_t __fflags_t; /* file flags */
More information about the svn-src-all
mailing list