diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-09-28 14:50:49 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-09-28 14:50:49 +0000 |
commit | 352009371aa7244b96c1bf142d19f49340739542 (patch) | |
tree | 508f3aaba1ed617e1e9f4594995d2f67be987a42 /lib/fuse_loop_mt.c | |
parent | 4cecc259adb642b3f24130ac0fc9f1f394eb139d (diff) | |
download | libfuse-352009371aa7244b96c1bf142d19f49340739542.tar.gz |
fix
Diffstat (limited to 'lib/fuse_loop_mt.c')
-rw-r--r-- | lib/fuse_loop_mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |