summaryrefslogtreecommitdiffstats
path: root/tools/fs_get_stats
diff options
context:
space:
mode:
Diffstat (limited to 'tools/fs_get_stats')
-rw-r--r--tools/fs_get_stats/fs_get_stats.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/fs_get_stats/fs_get_stats.c b/tools/fs_get_stats/fs_get_stats.c
index 356f6f9..a9814b9 100644
--- a/tools/fs_get_stats/fs_get_stats.c
+++ b/tools/fs_get_stats/fs_get_stats.c
@@ -57,7 +57,8 @@ main(int argc, const char *argv[])
if (!strcmp(argv[2], "1"))
is_dir = 1;
- fs_config(argv[3], is_dir, &uid, &gid, &perms);
+ uint64_t capabilities;
+ fs_config(argv[3], is_dir, &uid, &gid, &perms, &capabilities);
fprintf(stdout, "%d %d 0%o\n", uid, gid, perms);
return 0;