diff options
Diffstat (limited to 'tests/libfstree/fstree_glob1.c')
-rw-r--r-- | tests/libfstree/fstree_glob1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libfstree/fstree_glob1.c b/tests/libfstree/fstree_glob1.c index 708b0e8..08e39bd 100644 --- a/tests/libfstree/fstree_glob1.c +++ b/tests/libfstree/fstree_glob1.c @@ -204,10 +204,11 @@ static void check_hierarchy(tree_node_t *root, bool subdir, bool recursive) TEST_NULL(n); } -int main(void) +int main(int argc, char **argv) { fstree_t fs; int ret; + (void)argc; (void)argv; /* first test case, directory tree only */ ret = fstree_init(&fs, NULL); |