aboutsummaryrefslogtreecommitdiff
path: root/tests/libutil/rbtree.c
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2021-12-04 21:12:06 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2021-12-05 10:32:01 +0100
commit8297b3faf8606762b176d57637f2ec5f84601e0d (patch)
tree0b30ab78333f6f04adb1ab1ed56113246a17198e /tests/libutil/rbtree.c
parent2b8eb19a4de81db470f7ff5021a8a4822cc8c80d (diff)
Fix: unit test and sample program Windows build
Now that there is a wrapper for main() on Windows, all executable programs must use a common, cannonical signature for main(). Furthermore, the Windows version of the epoch test needs wrappers for setenv/unsetenv. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/libutil/rbtree.c')
-rw-r--r--tests/libutil/rbtree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libutil/rbtree.c b/tests/libutil/rbtree.c
index c430d67..05f7aa3 100644
--- a/tests/libutil/rbtree.c
+++ b/tests/libutil/rbtree.c
@@ -151,7 +151,7 @@ static int check_subtrees_equal(const rbtree_node_t *lhs,
return 0;
}
-int main(void)
+int main(int argc, char **argv)
{
size_t count, blkdepth, mind, maxd;
sqfs_s32 key, key2;
@@ -159,6 +159,7 @@ int main(void)
rbtree_node_t *n;
sqfs_u64 value;
int ret;
+ (void)argc; (void)argv;
TEST_ASSERT(rbtree_init(&rb, sizeof(sqfs_s32),
sizeof(sqfs_u64), key_compare) == 0);