summaryrefslogtreecommitdiffstats
path: root/sbin/umount
diff options
context:
space:
mode:
authoruqs <uqs@FreeBSD.org>2015-12-29 11:24:35 +0000
committeruqs <uqs@FreeBSD.org>2015-12-29 11:24:35 +0000
commitd4f2c120c09150a7012ceea91a74ea068aa5a9c6 (patch)
treef9218ab7a14e2a493fba0f91eb498c3952cb9ce3 /sbin/umount
parent850d0994e48b0ef68d33875e26326d44931fcf1e (diff)
downloadFreeBSD-src-d4f2c120c09150a7012ceea91a74ea068aa5a9c6.zip
FreeBSD-src-d4f2c120c09150a7012ceea91a74ea068aa5a9c6.tar.gz
Fix type mismatches for malloc(3) and Co.
Found by: clang static analyzer Reviewed by: ed Differential Revision: https://reviews.freebsd.org/D4722
Diffstat (limited to 'sbin/umount')
-rw-r--r--sbin/umount/umount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/umount/umount.c b/sbin/umount/umount.c
index 521bbc8..6cd8ea7 100644
--- a/sbin/umount/umount.c
+++ b/sbin/umount/umount.c
@@ -434,7 +434,7 @@ getmntentry(const char *fromname, const char *onname, fsid_t *fsid, dowhat what)
{
static struct statfs *mntbuf;
static size_t mntsize = 0;
- static char *mntcheck = NULL;
+ static int *mntcheck = NULL;
struct statfs *sfs, *foundsfs;
int i, count;
OpenPOWER on IntegriCloud