Skip to content

Commit fb309a3

Browse files
committed
Use '(void)' instead of '()' in C code.
1 parent 064d798 commit fb309a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libc-bottom-half/crt/crt1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ static __wasi_errno_t populate_args(size_t *argc, char ***argv) {
3333
return __wasi_args_get(*argv, argv_buf);
3434
}
3535

36-
static __wasi_errno_t populate_environ() {
36+
static __wasi_errno_t populate_environ(void) {
3737
__wasi_errno_t err;
3838

3939
/* Get the sizes of the arrays we'll have to create to copy in the environment. */

0 commit comments

Comments
 (0)