Merge pull request #155 from yatch/pr/bugfix-in-sixtop-example

sixtop: bugfix adding a missing 'static' modifier
This commit is contained in:
Simon Duquennoy 2017-11-05 10:15:21 +01:00 committed by GitHub
commit e63de9271c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ AUTOSTART_PROCESSES(&node_process);
/*---------------------------------------------------------------------------*/
PROCESS_THREAD(node_process, ev, data)
{
int is_coordinator;
static int is_coordinator;
static int added_num_of_links = 0;
static struct etimer et;
struct tsch_neighbor *n;