Skip to content

Commit

Permalink
tests:xtimer_hang: use THREAD_STACKSIZE_DEFAULT instead of literal.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseichinger committed Jan 7, 2016
1 parent 33ada0c commit 2f165eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/xtimer_hang/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

#define TEST_SECONDS (10U)
#define TEST_TIME (TEST_SECONDS * SEC_IN_USEC)
#define STACKSIZE_TIMER (1024)
#define STACKSIZE_TIMER (THREAD_STACKSIZE_DEFAULT)

char stack_timer1[STACKSIZE_TIMER];
char stack_timer2[STACKSIZE_TIMER];
Expand Down

0 comments on commit 2f165eb

Please sign in to comment.