projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8771b17
)
fuse_kern_unmount(): fix variable type.
author
Nikolaus Rath
<Nikolaus@rath.org>
Fri, 11 Aug 2017 08:31:24 +0000
(10:31 +0200)
committer
Nikolaus Rath
<Nikolaus@rath.org>
Fri, 11 Aug 2017 08:32:39 +0000
(10:32 +0200)
lib/mount_bsd.c
patch
|
blob
|
history
diff --git
a/lib/mount_bsd.c
b/lib/mount_bsd.c
index 5962e64d147c5cd39b6e15592e3752f36eb11ebd..aafde7745574096e943d179cbd59a1b28ceba657 100644
(file)
--- 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);