Skip to content

Commit

Permalink
Fix nasa#114, Resolve uninit var static analysis warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed May 12, 2022
1 parent d15cf11 commit 136df4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsw/src/sch_lab_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ int32 SCH_LAB_AppInit(void)
int32 Status;
int32 OsStatus;
uint32 TimerPeriod;
osal_id_t TimeBaseId;
osal_id_t TimeBaseId = OS_OBJECT_ID_UNDEFINED;
SCH_LAB_ScheduleTable_t * ConfigTable;
SCH_LAB_ScheduleTableEntry_t *ConfigEntry;
SCH_LAB_StateEntry_t * LocalStateEntry;
Expand Down

0 comments on commit 136df4e

Please sign in to comment.