From d7ab8be330747d12c00e738f1aff5c0f0e332f7a Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Fri, 11 Aug 2017 10:31:24 +0200 Subject: [PATCH] fuse_kern_unmount(): fix variable type. --- lib/mount_bsd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index 5962e64..aafde77 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -133,7 +133,8 @@ void fuse_kern_unmount(const char *mountpoint, int fd) /* Check if kernel is doing init in background */ static int init_backgrounded(void) { - unsigned ibg, len; + unsigned ibg; + size_t len; len = sizeof(ibg); -- 2.30.2