SCP: Fix missing string from format in help output
This commit is contained in:
parent
1c38700d6f
commit
261abfc35f
1 changed files with 1 additions and 1 deletions
2
scp.c
2
scp.c
|
@ -3242,7 +3242,7 @@ if (enabled_units) {
|
|||
(dptr->units[unit].flags & UNIT_SEQ) &&
|
||||
(!(dptr->units[unit].flags & UNIT_MUSTBUF))) {
|
||||
sprintf (buf, "set %s%s APPEND", sim_uname (&dptr->units[unit]), (enabled_units > 1) ? "n" : "");
|
||||
fprintf (st, "%-30s\tSets %s position to EOF\n", buf, sim_uname (&dptr->units[unit]), (enabled_units > 1) ? "n" : "");
|
||||
fprintf (st, "%-30s\tSets %s%s position to EOF\n", buf, sim_uname (&dptr->units[unit]), (enabled_units > 1) ? "n" : "");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue