Renaming method fixes gcc 11 warning (overloaded virtual).

This commit is contained in:
Volker Ruppert 2023-11-05 11:01:41 +01:00
parent 7469bcb69a
commit 83c71dd7a2
2 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2021 The Bochs Project
// Copyright (C) 2001-2023 The Bochs Project
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
@ -249,7 +249,7 @@ void bx_ne2k_main_c::init(void)
bx_list_c *base = (bx_list_c*) SIM->get_param(pname);
if (SIM->get_param_bool("enabled", base)->get()) {
theNE2kDev[card] = new bx_ne2k_c();
theNE2kDev[card]->init(card);
theNE2kDev[card]->init_card(card);
count++;
}
}
@ -314,7 +314,7 @@ bx_ne2k_c::~bx_ne2k_c()
BX_DEBUG(("Exit"));
}
void bx_ne2k_c::init(Bit8u card)
void bx_ne2k_c::init_card(Bit8u card)
{
char pname[20];
Bit8u macaddr[6];

View File

@ -2,7 +2,7 @@
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2001-2021 The Bochs Project
// Copyright (C) 2001-2023 The Bochs Project
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
@ -205,7 +205,7 @@ class bx_ne2k_c
public:
bx_ne2k_c();
virtual ~bx_ne2k_c();
virtual void init(Bit8u card);
virtual void init_card(Bit8u card);
virtual void reset(unsigned type);
void ne2k_register_state(bx_list_c *parent, Bit8u card);
#if BX_SUPPORT_PCI