[net] Rename the copyStats arg from m_asmap to asmap

The m_ prefix indicates that a variable is a data member. Using it as
a parameter name is misleading.

Also update the name of the function from copyStats to CopyStats to
comply with our style guide.
This commit is contained in:
John Newbery
2021-08-24 11:40:21 +01:00
parent f572f2b204
commit f9002cb5db
3 changed files with 5 additions and 5 deletions

View File

@ -46,7 +46,7 @@ FUZZ_TARGET_INIT(net, initialize_net)
return;
}
CNodeStats stats;
node.copyStats(stats, asmap);
node.CopyStats(stats, asmap);
},
[&] {
const CNode* add_ref_node = node.AddRef();