diff options
author | ngie <ngie@FreeBSD.org> | 2017-05-31 08:40:39 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-05-31 08:40:39 +0000 |
commit | 9e551650936432cf37553b70bed2455946e42666 (patch) | |
tree | 0951fcccaaf46e970aeb8b0d8b06caed3cd12134 /lib | |
parent | 74a03ffa0ce5f161b704d0aee8dcd492a4abb78b (diff) | |
download | FreeBSD-src-9e551650936432cf37553b70bed2455946e42666.zip FreeBSD-src-9e551650936432cf37553b70bed2455946e42666.tar.gz |
MFC r317311,r317312,r319019:
r317311:
Check for failures from getpagesize(3)
Return errno on failure, similar to the open(2) call above it.
CID: 1193753
r317312:
Fix type for `pagesize` to match the return type for getpagesize(3)
to fix the build
Pointyhat to: ngie
r319019:
Remove getpagesize(3) error checking added in r317312
getpagesize(3) no longer fails as of r317436.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libgeom/geom_stats.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libgeom/geom_stats.c b/lib/libgeom/geom_stats.c index 539c320..c87dd31 100644 --- a/lib/libgeom/geom_stats.c +++ b/lib/libgeom/geom_stats.c @@ -42,8 +42,8 @@ #include <libgeom.h> /************************************************************/ -static uint npages, pagesize, spp; -static int statsfd = -1; +static uint npages, spp; +static int pagesize, statsfd = -1; static u_char *statp; void |