+2005-06-20 Miklos Szeredi <miklos@szeredi.hu>
+
+ * Fix UCLIBC compile error. Patch by Christian Magnusson
+
2005-06-08 Miklos Szeredi <miklos@szeredi.hu>
* Enable the auto-loading of the module via access to the
#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);
struct fuse_read_in *arg, struct fuse_dirhandle *dh)
{
int err = -ENOENT;
+ char *path;
pthread_rwlock_rdlock(&f->tree_lock);
- char *path = get_path(f, in->nodeid);
+ path = get_path(f, in->nodeid);
if (path != NULL) {
struct fuse_file_info fi;