1
0
mirror of https://github.com/simh/simh.git synced 2026-05-03 14:38:45 +00:00

PDP11, VAX: const cleanup

This commit is contained in:
Mark Pizzolato
2015-02-21 12:48:35 -08:00
parent e768629009
commit 26ef9b566a
17 changed files with 36 additions and 36 deletions

View File

@@ -69,7 +69,7 @@ static struct boot_dev boot_tab[] = {
};
t_stat sysd_reset (DEVICE *dptr);
char *sysd_description (DEVICE *dptr);
const char *sysd_description (DEVICE *dptr);
t_stat vax610_boot (int32 flag, char *ptr);
t_stat vax610_boot_parse (int32 flag, char *ptr);
t_stat cpu_boot (int32 unitno, DEVICE *dptr);
@@ -524,7 +524,7 @@ sim_vm_cmd = vax610_cmd;
return SCPE_OK;
}
char *sysd_description (DEVICE *dptr)
const char *sysd_description (DEVICE *dptr)
{
return "system devices";
}