Merge pull request #601 from rhdlilj/master

Using context->maxslave instead EC_MAXSLAVE
This commit is contained in:
nakarlsson 2022-03-30 19:42:43 +02:00 committed by GitHub
commit 703a6e08d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -134,14 +134,14 @@ int ecx_detect_slaves(ecx_contextt *context)
if (wkc > 0)
{
/* this is strictly "less than" since the master is "slave 0" */
if (wkc < EC_MAXSLAVE)
if (wkc < context->maxslave)
{
*(context->slavecount) = wkc;
}
else
{
EC_PRINT("Error: too many slaves on network: num_slaves=%d, EC_MAXSLAVE=%d\n",
wkc, EC_MAXSLAVE);
EC_PRINT("Error: too many slaves on network: num_slaves=%d, max_slaves=%d\n",
wkc, context->maxslave);
return EC_SLAVECOUNTEXCEEDED;
}
}