From: Csaba Henk Date: Thu, 3 Jan 2008 11:08:44 +0000 (+0000) Subject: lib/mount_bsd.c: fix some warnings X-Git-Tag: fuse_2_8_start~10 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fdfba078f6bde0206bbcb16cd6dee999492bf6c3;p=qemu-gpiodev%2Flibfuse.git lib/mount_bsd.c: fix some warnings --- diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index fb4f12a..a1c609d 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -172,7 +172,7 @@ void fuse_unmount_compat22(const char *mountpoint) char *ssc, *umount_cmd; FILE *sf; int rv; - char *seekscript = + char seekscript[] = /* error message is annoying in help output */ "exec 2>/dev/null; " "/usr/bin/fstat " FUSE_DEV_TRUNK "* | " @@ -235,7 +235,7 @@ void fuse_kern_unmount(const char *mountpoint, int fd) /* Check if kernel is doing init in background */ static int init_backgrounded(void) { - int ibg, len; + unsigned ibg, len; len = sizeof(ibg); @@ -251,7 +251,7 @@ static int fuse_mount_core(const char *mountpoint, const char *opts) const char *mountprog = FUSERMOUNT_PROG; int fd; char *fdnam, *dev; - int pid; + pid_t pid; fdnam = getenv("FUSE_DEV_FD"); @@ -274,7 +274,7 @@ static int fuse_mount_core(const char *mountpoint, const char *opts) dev = getenv("FUSE_DEV_NAME"); if (! dev) - dev = FUSE_DEV_TRUNK; + dev = (char *)FUSE_DEV_TRUNK; if ((fd = open(dev, O_RDWR)) < 0) { perror("fuse: failed to open fuse device");