Skip to content

Commit

Permalink
Merge pull request #82 from jphickey/fix-66-table-unstatic
Browse files Browse the repository at this point in the history
Fix #66, remove static from table definition
  • Loading branch information
dzbaker authored Feb 9, 2023
2 parents d524bf1 + 88b70c0 commit 5c9d4e8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions fsw/tables/fm_monitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@
/*
** FM file system free space table header
*/
static CFE_TBL_FileDef_t CFE_TBL_FileDef
__attribute__((__used__)) = {"FM_MonitorTable", FM_APP_NAME "." FM_TABLE_CFE_NAME, FM_TABLE_DEF_DESC,
FM_TABLE_FILENAME, sizeof(FM_MonitorTable_t)};
CFE_TBL_FileDef_t CFE_TBL_FileDef = {"FM_MonitorTable", FM_APP_NAME "." FM_TABLE_CFE_NAME, FM_TABLE_DEF_DESC,
FM_TABLE_FILENAME, sizeof(FM_MonitorTable_t)};

/*
** FM file system monitor table data
Expand Down

0 comments on commit 5c9d4e8

Please sign in to comment.