From aad37c814553c2e9cfe80cde1dc553b826839a99 Mon Sep 17 00:00:00 2001 From: Kevin Lo Date: Sun, 4 Jan 2015 15:26:02 +0000 Subject: [PATCH] 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 --- sys/sys/_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/sys/_types.h b/sys/sys/_types.h index ffef9d8b9abc..7904a4f77898 100644 --- a/sys/sys/_types.h +++ b/sys/sys/_types.h @@ -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 */