diff options
Diffstat (limited to 'lib/fuse.c')
-rw-r--r-- | lib/fuse.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -95,7 +95,7 @@ struct node { struct fuse_dirhandle { pthread_mutex_t lock; struct fuse *fuse; - unsigned char *contents; + char *contents; int allocated; unsigned len; unsigned needlen; @@ -1231,7 +1231,7 @@ static int fill_dir_common(struct fuse_dirhandle *dh, const char *name, unsigned namelen = strlen(name); unsigned entsize; unsigned newlen; - unsigned char *newptr; + char *newptr; if (stat) stbuf = *stat; |