aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse_lowlevel_mt.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fuse_lowlevel_mt.c')
-rw-r--r--lib/fuse_lowlevel_mt.c2
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;