diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-04-19 08:45:35 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-04-27 10:36:41 +0200 |
commit | fa09a9eac8d8ab65ce4064c35a9f21349a644982 (patch) | |
tree | 75f71f932ce8c45c47cacf37070b22f6f0dbbc5c /src/node/blockstorage.h | |
parent | fadafab83379ff10d86ada179c6f9641d19464fe (diff) |
style: Add { } to multi-line if
Can be reviewed with --word-diff-regex=. --ignore-all-space
Diffstat (limited to 'src/node/blockstorage.h')
-rw-r--r-- | src/node/blockstorage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node/blockstorage.h b/src/node/blockstorage.h index 14f072fefb..faf99dea81 100644 --- a/src/node/blockstorage.h +++ b/src/node/blockstorage.h @@ -50,9 +50,9 @@ bool IsBlockPruned(const CBlockIndex* pblockindex); void CleanupBlockRevFiles(); /** Open a block file (blk?????.dat) */ -FILE* OpenBlockFile(const FlatFilePos &pos, bool fReadOnly = false); +FILE* OpenBlockFile(const FlatFilePos& pos, bool fReadOnly = false); /** Translation to a filesystem path */ -fs::path GetBlockPosFilename(const FlatFilePos &pos); +fs::path GetBlockPosFilename(const FlatFilePos& pos); /** Get block file info entry for one block file */ CBlockFileInfo* GetBlockFileInfo(size_t n); |