Minor: Fixed indent.

This commit is contained in:
Florian Pose 2022-05-17 14:10:51 +02:00
parent d301cbb992
commit 26e5b9f553
1 changed files with 6 additions and 6 deletions

View File

@ -28,8 +28,8 @@
*****************************************************************************/ *****************************************************************************/
/** /**
\file \file
Ethernet over EtherCAT (EoE). Ethernet over EtherCAT (EoE).
*/ */
/*****************************************************************************/ /*****************************************************************************/
@ -368,10 +368,10 @@ void ec_eoe_run(ec_eoe_t *eoe /**< EoE handler */)
*/ */
void ec_eoe_queue(ec_eoe_t *eoe /**< EoE handler */) void ec_eoe_queue(ec_eoe_t *eoe /**< EoE handler */)
{ {
if (eoe->queue_datagram) { if (eoe->queue_datagram) {
ec_master_queue_datagram_ext(eoe->slave->master, &eoe->datagram); ec_master_queue_datagram_ext(eoe->slave->master, &eoe->datagram);
eoe->queue_datagram = 0; eoe->queue_datagram = 0;
} }
} }
/*****************************************************************************/ /*****************************************************************************/