1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 11:46:37 +00:00

Fixed declaration of unused parameter to quiet a gcc warning

This commit is contained in:
Mark Pizzolato
2012-04-27 10:08:27 -07:00
parent 83172116e8
commit 8989b111c1
2 changed files with 2 additions and 2 deletions

View File

@@ -720,7 +720,7 @@ t_stat eth_show (FILE* st, UNIT* uptr, int32 val, void* desc)
return SCPE_OK;
}
t_stat eth_show_devices (FILE* st, DEVICE *dptr, UNIT* uptr, int32 val, void* desc)
t_stat eth_show_devices (FILE* st, DEVICE *dptr, UNIT* uptr, int32 val, char* desc)
{
return eth_show (st, uptr, val, desc);
}