TMXR: Return reasonable error status when disconnecting a line without specifying the line
This commit is contained in:
parent
1d0a3b4402
commit
d95d32b6d7
1 changed files with 1 additions and 1 deletions
|
@ -786,7 +786,7 @@ else if (uptr) { /* implied line form? */
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (cptr == NULL) /* named line form, parameter supplied? */
|
else if (cptr == NULL) /* named line form, parameter supplied? */
|
||||||
code = SCPE_ARG; /* no, so report missing */
|
code = SCPE_MISVAL; /* no, so report missing */
|
||||||
|
|
||||||
else {
|
else {
|
||||||
ln = get_uint (cptr, 10, mp->lines - 1, &code); /* get line number */
|
ln = get_uint (cptr, 10, mp->lines - 1, &code); /* get line number */
|
||||||
|
|
Loading…
Add table
Reference in a new issue