Corrected an error in the previous commit, and updated the version
number.
This commit is contained in:
parent
187c9285e2
commit
fcdce0553d
|
|
@ -1514,12 +1514,15 @@ CmdPort(w, cmd)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ((lab == NULL) & (!doQuiet))
|
if (lab == NULL)
|
||||||
{
|
{
|
||||||
if (StrIsInt(cmd->tx_argv[1]))
|
if (!doQuiet)
|
||||||
TxError("No label found with index %s.\n", cmd->tx_argv[1]);
|
{
|
||||||
else
|
if (StrIsInt(cmd->tx_argv[1]))
|
||||||
TxError("No port found with name %s.\n", cmd->tx_argv[1]);
|
TxError("No label found with index %s.\n", cmd->tx_argv[1]);
|
||||||
|
else
|
||||||
|
TxError("No port found with name %s.\n", cmd->tx_argv[1]);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
argstart = 2;
|
argstart = 2;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue