Skip to content

Commit

Permalink
Add missing bracket.
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollo3zehn committed Feb 16, 2021
1 parent 2256f3d commit 959942c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/SOEM_wrapper/soem_wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ int CALLCONV ScanDevices(ecx_contextt* context, char* interfaceName, ec_slave_in
do
{
ecx_statecheck(context, 0, EC_STATE_PRE_OP, 5 * EC_TIMEOUTSTATE);
} while context->slavelist[0].state != EC_STATE_PRE_OP);
} while (context->slavelist[0].state != EC_STATE_PRE_OP);

// read real CSA value from EEPROM
for (int slaveIndex = 1; slaveIndex < *context->slavecount + 1; slaveIndex++)
Expand Down

0 comments on commit 959942c

Please sign in to comment.