mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-02 09:46:52 -05:00
Merge #13974: [trivial] Fix typo in CDiskBlockPos struct's ToString
8bd98a3846
[trivial] Fix typo in CDiskBlockPos struct's ToString (Jon Layton)
Pull request description:
(Logging)
Tree-SHA512: 5c0334fda15b1d668b251107772ae527e6b5f63d10e6c75330107eec0db7195845fdb9e92781591bcad6720bc8ef5af5a77cccf883170c4dfd2090b8c7ce16bd
This commit is contained in:
commit
80127f074e
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ struct CDiskBlockPos
|
|||
|
||||
std::string ToString() const
|
||||
{
|
||||
return strprintf("CBlockDiskPos(nFile=%i, nPos=%i)", nFile, nPos);
|
||||
return strprintf("CDiskBlockPos(nFile=%i, nPos=%i)", nFile, nPos);
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue