Skip to content

Commit

Permalink
Constness #2
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Mar 8, 2022
1 parent d425556 commit 42c21a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/xcp.h
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ extern "C" {

/* DAQ Implementation Macros */
#define XCP_DAQ_DEFINE_ODT_ENTRY(meas) \
{ {(const uint32_t) & (meas)}, sizeof((meas)) }
{ {(uint32_t) & (meas)}, sizeof((meas)) }

/* DAQ Event Implementation Macros */
#define XCP_DAQ_BEGIN_EVENTS const XcpDaq_EventType XcpDaq_Events[XCP_DAQ_MAX_EVENT_CHANNEL] = {
Expand Down

0 comments on commit 42c21a1

Please sign in to comment.