fs: fix missing semicolon in fuse_fs_access.c
Add missing semicolon in fuse_fs_access.c. Signed-off-by: Jeppe Odgaard <jeppe.odgaard@prevas.dk>
This commit is contained in:
parent
90c4498ca1
commit
a58bf96d0d
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ static int fuse_fs_access_readdir(const char *path, void *buf,
|
|||
return -ENOMEM;
|
||||
}
|
||||
|
||||
memcpy(mount_path, path, len)
|
||||
memcpy(mount_path, path, len);
|
||||
mount_path[len] = '/';
|
||||
err = fs_opendir(&dir, mount_path);
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue