Skip to content

Commit 6c5fad0

Browse files
authored
Merge pull request #32 from JerryMain/task03_unused-variable_patch
task-03: Unused variable error
2 parents d062564 + 44ecc61 commit 6c5fad0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

task-03/main.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ char stack[THREAD_STACKSIZE_MAIN];
88

99
void *thread_handler(void *arg)
1010
{
11+
(void) arg;
1112
puts("I'm in \"thread\" now");
1213
return NULL;
1314
}

0 commit comments

Comments
 (0)