CO_SYNC: static analysis: ignoring return value of function 'CO_SYNCsend' [MISRA 2012 Directive 4.7, required], [MISRA 2012 Rule 17.7, required]
This commit is contained in:
parent
995fed609d
commit
4ae66f9839
1 changed files with 1 additions and 1 deletions
|
|
@ -393,7 +393,7 @@ CO_SYNC_status_t CO_SYNC_process(CO_SYNC_t *SYNC,
|
|||
if (SYNC->isProducer) {
|
||||
if (SYNC->timer >= OD_1006_period) {
|
||||
syncStatus = CO_SYNC_RX_TX;
|
||||
CO_SYNCsend(SYNC);
|
||||
(void)CO_SYNCsend(SYNC);
|
||||
}
|
||||
#if ((CO_CONFIG_SYNC) & CO_CONFIG_FLAG_TIMERNEXT) != 0
|
||||
/* Calculate when next SYNC needs to be sent */
|
||||
|
|
|
|||
Loading…
Reference in a new issue