aboutsummaryrefslogtreecommitdiff
path: root/busybox/coreutils/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'busybox/coreutils/test.c')
-rw-r--r--busybox/coreutils/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/busybox/coreutils/test.c b/busybox/coreutils/test.c
index 8fa6d166f..5195fafa1 100644
--- a/busybox/coreutils/test.c
+++ b/busybox/coreutils/test.c
@@ -304,7 +304,7 @@ static arith_t primary(enum token n)
304 return strlen(*t_wp) > 0; 304 return strlen(*t_wp) > 0;
305} 305}
306 306
307static int binop() 307static int binop(void)
308{ 308{
309 const char *opnd1, *opnd2; 309 const char *opnd1, *opnd2;
310 struct t_op const *op; 310 struct t_op const *op;
@@ -531,7 +531,7 @@ static int test_eaccess(char *path, int mode)
531 return (-1); 531 return (-1);
532} 532}
533 533
534static void initialize_group_array() 534static void initialize_group_array(void)
535{ 535{
536 ngroups = getgroups(0, NULL); 536 ngroups = getgroups(0, NULL);
537 group_array = xrealloc(group_array, ngroups * sizeof(gid_t)); 537 group_array = xrealloc(group_array, ngroups * sizeof(gid_t));