Skip to content

Commit

Permalink
Remove const-ness
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Mar 8, 2022
1 parent f765e94 commit d425556
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/xcpsim/app_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const FlsEmu_ConfigType FlsEmu_Config = {
(FlsEmu_SegmentType**)segments,
};

const XcpDaq_ODTEntryType XcpDaq_PredefinedOdtEntries[] = {
XcpDaq_ODTEntryType XcpDaq_PredefinedOdtEntries[] = {
XCP_DAQ_DEFINE_ODT_ENTRY(triangle),
XCP_DAQ_DEFINE_ODT_ENTRY(randomValue),
};
Expand Down
2 changes: 1 addition & 1 deletion inc/xcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ bool XcpDaq_QueueDequeue(uint16_t *len, uint8_t *data);
** Predefined DAQ constants.
*/
#if XCP_DAQ_ENABLE_PREDEFINED_LISTS == XCP_ON
extern const XcpDaq_ODTEntryType XcpDaq_PredefinedOdtEntries[];
extern XcpDaq_ODTEntryType XcpDaq_PredefinedOdtEntries[];
extern const XcpDaq_ODTType XcpDaq_PredefinedOdts[];
extern const XcpDaq_ListConfigurationType XcpDaq_PredefinedLists[];
extern const XcpDaq_ListIntegerType XcpDaq_PredefinedListCount;
Expand Down

0 comments on commit d425556

Please sign in to comment.