Date: Sun, 4 Jan 2015 15:26:03 +0000 (UTC) From: Kevin Lo <kevlo@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r276660 - head/sys/sys Message-ID: <201501041526.t04FQ3uX088656@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501041526.t04FQ3uX088656>