1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-24 13:57:43 +03:00

clifuse: Use an empty array for holding the inode path

Cleaner these days.

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2023-08-22 09:22:13 +02:00 committed by Jeremy Allison
parent 94dcda1ee2
commit 27ae6bdbb1

View File

@ -54,7 +54,7 @@ struct mount_state {
struct inode_state {
struct idr_context *ino_ctx;
fuse_ino_t ino;
char path[1];
char path[];
};
static int inode_state_destructor(struct inode_state *s);