Skip to content

Commit 3e194d0

Browse files
authored
Merge pull request #186 from KFilipek/fix-master_void
Add void param to main function to meet strict C requirements
2 parents 58d0d13 + 9974b7f commit 3e194d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_base_alloc_linear.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ static void *start_routine(void *arg) {
5050
return NULL;
5151
}
5252

53-
int main() {
53+
int main(void) {
5454
pthread_t thread[NTHREADS];
5555
umf_ba_linear_pool_t *pool = umf_ba_linear_create(MAX_ALLOCATION_SIZE);
5656

0 commit comments

Comments
 (0)