1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-21 11:54:15 +01:00

OP-1009 missing initialization on a previously static variable.

+review OPReview-516
This commit is contained in:
Alessio Morale 2013-06-17 21:41:54 +02:00
parent b012d55f26
commit 54af41765e

View File

@ -167,7 +167,7 @@ static void systemTask(__attribute__((unused)) void *parameters)
{ {
/* start the delayed callback scheduler */ /* start the delayed callback scheduler */
CallbackSchedulerStart(); CallbackSchedulerStart();
uint8_t cycleCount; uint8_t cycleCount = 0;
/* create all modules thread */ /* create all modules thread */
MODULE_TASKCREATE_ALL; MODULE_TASKCREATE_ALL;