Skip to content

Commit 44ecc61

Browse files
authored
Fixes unused variable error in task-03
This will prevent -Werror=unused-variable during compiling.
1 parent d062564 commit 44ecc61

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)