1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

examples/default: reduce scope of globals in main.c

This commit is contained in:
Joakim Gebart 2015-01-23 14:08:11 +01:00
parent 47e0c85c2d
commit 14824e9909

View File

@ -53,8 +53,8 @@
#ifdef MODULE_TRANSCEIVER
char radio_stack_buffer[RADIO_STACK_SIZE];
msg_t msg_q[RCV_BUFFER_SIZE];
static char radio_stack_buffer[RADIO_STACK_SIZE];
static msg_t msg_q[RCV_BUFFER_SIZE];
void *radio(void *arg)
{