From 8c983408f92d71a82eab4da6311e4a9133158247 Mon Sep 17 00:00:00 2001 From: kevlo 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 ffef9d8b9ab..7904a4f7789 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 */ -- 2.45.0