You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In file common/mbu_common.h, there is code snip as:
case 'b': {
rtuParams->baud = getInt(value, &ok);
if (0 != ok) {
printf("Baudrate is invalid %s", value);
ok = 0;
}
Is it should be ?
if (0 == ok) {
The text was updated successfully, but these errors were encountered:
In file common/mbu_common.h, there is code snip as:
case 'b': {
rtuParams->baud = getInt(value, &ok);
if (0 != ok) {
printf("Baudrate is invalid %s", value);
ok = 0;
}
Is it should be ?
if (0 == ok) {
The text was updated successfully, but these errors were encountered: