From e6ebf96f05923c41980c9ea6c7799330836cdad4 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Mon, 7 Feb 2022 23:08:20 -0800 Subject: [PATCH] ETHER: Fix stub unit test routine declaration when sim_ether isn't used --- sim_ether.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_ether.c b/sim_ether.c index e99ea2e0..4c21c12e 100644 --- a/sim_ether.c +++ b/sim_ether.c @@ -978,7 +978,7 @@ t_stat eth_show (FILE* st, UNIT* uptr, int32 val, CONST void* desc) } static int _eth_get_system_id (char *buf, size_t buf_size) {memset (buf, 0, buf_size); return 0;} -t_stat sim_ether_test (DEVICE *dptr) +t_stat sim_ether_test (DEVICE *dptr, const char *cptr) {return SCPE_OK;} #else /* endif unimplemented */