Skip to content

Commit

Permalink
domain_schedule: remove const qualifiers
Browse files Browse the repository at this point in the history
Signed-off-by: James Archer <[email protected]>
  • Loading branch information
JE-Archer committed Sep 6, 2024
1 parent fe4839e commit d8efbf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions domain_schedule.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <model/statedata.h>

/* Default schedule. */
const dschedule_t ksDomSchedule[] = {
dschedule_t ksDomSchedule[] = {
{ .domain = 0, .length = 60 },
#if CONFIG_NUM_DOMAINS > 1
{ .domain = 1, .length = 4 },
Expand Down Expand Up @@ -73,4 +73,4 @@ const dschedule_t ksDomSchedule[] = {
#endif
};

const word_t ksDomScheduleLength = sizeof(ksDomSchedule) / sizeof(dschedule_t);
word_t ksDomScheduleLength = sizeof(ksDomSchedule) / sizeof(dschedule_t);

0 comments on commit d8efbf6

Please sign in to comment.