Fix for:
[src/test/mon/test_mon_workloadgen.cc:351]: (error) Member variable
'whoami' is initialized by itself.
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
};
- OSDStub(int whoami, CephContext *cct)
+ OSDStub(int _whoami, CephContext *cct)
: TestStub(cct, "osd"),
auth_handler_registry(new AuthAuthorizeHandlerRegistry(
cct,
cct->_conf->auth_cluster_required.length() ?
cct->_conf->auth_cluster_required :
cct->_conf->auth_supported)),
- whoami(whoami),
+ whoami(_whoami),
gen(whoami),
mon_osd_rng(STUB_MON_OSD_FIRST, STUB_MON_OSD_LAST)
{