Module Name: src Committed By: christos Date: Sat Mar 17 21:30:30 UTC 2012
Modified Files: src/sys/sys: types.h Log Message: PR/44847: Jukka Ruohonen: blksize_t should be signed. http://pubs.opengroup.org/onlinepubs/000095399/basedefs/sys/types.h.html To generate a diff of this commit: cvs rdiff -u -r1.88 -r1.89 src/sys/sys/types.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/types.h diff -u src/sys/sys/types.h:1.88 src/sys/sys/types.h:1.89 --- src/sys/sys/types.h:1.88 Thu Jan 13 21:06:34 2011 +++ src/sys/sys/types.h Sat Mar 17 17:30:29 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: types.h,v 1.88 2011/01/14 02:06:34 rmind Exp $ */ +/* $NetBSD: types.h,v 1.89 2012/03/17 21:30:29 christos Exp $ */ /*- * Copyright (c) 1982, 1986, 1991, 1993, 1994 @@ -127,7 +127,7 @@ typedef int64_t longlong_t; /* for XDR typedef uint64_t u_longlong_t; /* for XDR */ typedef int64_t blkcnt_t; /* fs block count */ -typedef uint32_t blksize_t; /* fs optimal block size */ +typedef int32_t blksize_t; /* fs optimal block size */ #ifndef fsblkcnt_t typedef __fsblkcnt_t fsblkcnt_t; /* fs block count (statvfs) */