diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/test.c b/coreutils/test.c index cec3c471d..3da2daecd 100644 --- a/coreutils/test.c +++ b/coreutils/test.c | |||
@@ -310,7 +310,7 @@ static arith_t primary(enum token n) | |||
310 | return strlen(*t_wp) > 0; | 310 | return strlen(*t_wp) > 0; |
311 | } | 311 | } |
312 | 312 | ||
313 | static int binop() | 313 | static int binop(void) |
314 | { | 314 | { |
315 | const char *opnd1, *opnd2; | 315 | const char *opnd1, *opnd2; |
316 | struct t_op const *op; | 316 | struct t_op const *op; |
@@ -537,7 +537,7 @@ static int test_eaccess(char *path, int mode) | |||
537 | return (-1); | 537 | return (-1); |
538 | } | 538 | } |
539 | 539 | ||
540 | static void initialize_group_array() | 540 | static void initialize_group_array(void) |
541 | { | 541 | { |
542 | ngroups = getgroups(0, NULL); | 542 | ngroups = getgroups(0, NULL); |
543 | group_array = xrealloc(group_array, ngroups * sizeof(gid_t)); | 543 | group_array = xrealloc(group_array, ngroups * sizeof(gid_t)); |