Fixed declaration of unused parameter to quiet a gcc warning
This commit is contained in:
parent
83172116e8
commit
8989b111c1
2 changed files with 2 additions and 2 deletions
|
@ -720,7 +720,7 @@ t_stat eth_show (FILE* st, UNIT* uptr, int32 val, void* desc)
|
||||||
return SCPE_OK;
|
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);
|
return eth_show (st, uptr, val, desc);
|
||||||
}
|
}
|
||||||
|
|
|
@ -291,7 +291,7 @@ void eth_packet_trace_ex (ETH_DEV* dev, const uint8 *msg, int len, char* txt, in
|
||||||
t_stat eth_show (FILE* st, UNIT* uptr, /* show ethernet devices */
|
t_stat eth_show (FILE* st, UNIT* uptr, /* show ethernet devices */
|
||||||
int32 val, void* desc);
|
int32 val, void* desc);
|
||||||
t_stat eth_show_devices (FILE* st, DEVICE *dptr, /* show ethernet devices */
|
t_stat eth_show_devices (FILE* st, DEVICE *dptr, /* show ethernet devices */
|
||||||
UNIT* uptr, int32 val, void* desc);
|
UNIT* uptr, int32 val, char* desc);
|
||||||
void eth_show_dev (FILE*st, ETH_DEV* dev); /* show ethernet device state */
|
void eth_show_dev (FILE*st, ETH_DEV* dev); /* show ethernet device state */
|
||||||
|
|
||||||
void eth_mac_fmt (ETH_MAC* add, char* buffer); /* format ethernet mac address */
|
void eth_mac_fmt (ETH_MAC* add, char* buffer); /* format ethernet mac address */
|
||||||
|
|
Loading…
Add table
Reference in a new issue