aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fuse.c')
-rw-r--r--lib/fuse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index 0ee4ab4..a00ef1a 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -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;