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 9735246 commit f5310bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/xtimer_hang/main.c
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 f5310bf

Please sign in to comment.