From 352009371aa7244b96c1bf142d19f49340739542 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Wed, 28 Sep 2005 14:50:49 +0000 Subject: fix --- lib/fuse_loop_mt.c | 2 +- lib/mount.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/fuse_loop_mt.c b/lib/fuse_loop_mt.c index c0828f7..df254a9 100644 --- a/lib/fuse_loop_mt.c +++ b/lib/fuse_loop_mt.c @@ -33,7 +33,7 @@ struct fuse_worker { #ifndef USE_UCLIBC #define mutex_init(mut) pthread_mutex_init(mut, NULL) #else -static void mutex_init(pthread_mutex_t mut) +static void mutex_init(pthread_mutex_t *mut) { pthread_mutexattr_t attr; pthread_mutexattr_init(&attr); diff --git a/lib/mount.c b/lib/mount.c index 3236ce8..f7a5299 100644 --- a/lib/mount.c +++ b/lib/mount.c @@ -92,7 +92,7 @@ int fuse_mount(const char *mountpoint, const char *opts) return -1; } -#ifndef USE_UCLIBC +#ifdef HAVE_FORK pid = fork(); #else pid = vfork(); -- cgit v1.2.3