1
0
mirror of https://github.com/simh/simh.git synced 2026-02-17 04:58:14 +00:00

PDP10, PDP11, VAX: const cleanup

This commit is contained in:
Mark Pizzolato
2015-02-13 06:18:24 -08:00
parent 68efe4d36a
commit ef9d1adce1
77 changed files with 479 additions and 499 deletions

View File

@@ -97,7 +97,7 @@
#endif
struct sim_tape_fmt {
char *name; /* name */
const char *name; /* name */
int32 uflags; /* unit flags */
t_addr bot; /* bot test */
};
@@ -533,7 +533,7 @@ uptr->io_flush = NULL;
return SCPE_OK;
}
t_stat sim_tape_attach_help(FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, char *cptr)
t_stat sim_tape_attach_help(FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, const char *cptr)
{
fprintf (st, "%s Tape Attach Help\n\n", dptr->name);
if (0 == (uptr-dptr->units)) {