aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse_lowlevel_mt.c
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-08-03 09:11:06 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-08-03 09:11:06 +0000
commitf6e0ec6e2df64ce90e3a52a3e636f3ffb5c38927 (patch)
treed1187895079752b51f2bbdba465bd1aac5e65a09 /lib/fuse_lowlevel_mt.c
parent6c0209a8c78c82800a43c29a5dcccf872bfa613e (diff)
downloadlibfuse-f6e0ec6e2df64ce90e3a52a3e636f3ffb5c38927.tar.gz
fix
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;