Skip to content

Commit

Permalink
test228.c: remove unused arguments in main()
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Feb 27, 2017
1 parent c8f8c22 commit 8bf1acf
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/test228.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,13 @@ static void* thread_main(void* unused)
return NULL;
}

int main(int argc, char* argv[])
int main()
{
int i;

pthread_t tid1, tid2;
pthread_attr_t attr1, attr2;

(void)argc;
(void)argv;

pthread_attr_init(&attr1);
pthread_attr_init(&attr2);

Expand Down

0 comments on commit 8bf1acf

Please sign in to comment.