1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-13 23:37:13 +00:00

Display something descriptive when a peer hasn't been specified yet.

This commit is contained in:
Mark Pizzolato 2013-02-05 11:44:55 -08:00
parent 16d04a15ec
commit 63d0cdbd38

View File

@ -595,6 +595,10 @@ t_stat dmc_showpeer (FILE* st, UNIT* uptr, int32 val, void* desc)
{
fprintf(st, "peer=%s", controller->line->peer);
}
else
{
fprintf(st, "peer=unspecified");
}
return SCPE_OK;
}