diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-08-03 09:11:06 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-08-03 09:11:06 +0000 |
commit | f6e0ec6e2df64ce90e3a52a3e636f3ffb5c38927 (patch) | |
tree | d1187895079752b51f2bbdba465bd1aac5e65a09 /lib/fuse_lowlevel_mt.c | |
parent | 6c0209a8c78c82800a43c29a5dcccf872bfa613e (diff) | |
download | libfuse-f6e0ec6e2df64ce90e3a52a3e636f3ffb5c38927.tar.gz |
fix
Diffstat (limited to 'lib/fuse_lowlevel_mt.c')
-rw-r--r-- | lib/fuse_lowlevel_mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fuse_lowlevel_mt.c b/lib/fuse_lowlevel_mt.c index a06d42c..ee3a0ac 100644 --- a/lib/fuse_lowlevel_mt.c +++ b/lib/fuse_lowlevel_mt.c @@ -94,7 +94,7 @@ int fuse_ll_loop_mt_proc(struct fuse_ll *f, fuse_ll_processor_t proc, void *data struct fuse_worker *w; int i; - w = malloc(sizeof(struct fuse_worker)); + w = (struct fuse_worker *) malloc(sizeof(struct fuse_worker)); if (w == NULL) { fprintf(stderr, "fuse: failed to allocate worker structure\n"); return -1; |