PDP11: Fix typo in cpu_boot routine

This commit is contained in:
Mark Pizzolato 2021-06-08 13:12:01 -07:00
parent 287ebb3ea8
commit 4b03e1493a

View file

@ -3383,7 +3383,7 @@ DEVICE *rom = find_dev ("ROM");
if ((rom == NULL) ||
((rom->flags & DEV_DIS) != 0) ||
(SCPE_NOFNC == rom->boot (unitno, rom)));
(SCPE_NOFNC == rom->boot (unitno, rom)))
return SCPE_2FARG;
return SCPE_OK;
}