diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-12-03 10:14:54 +0100 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-12-03 10:19:17 +0100 |
commit | a8a4b9673e1f4acabe835a692840c54c50862449 (patch) | |
tree | 7df2cdf42e78d72e78b9ac27a7f584fdd84ecdfd /src/init.cpp | |
parent | cd7fb7d1deece9da15d7750b3e05f729555a2cbe (diff) |
add 2 constructors in CDiskBlockPos to simplify class usage
- add a default-constructor, which simply calls SetNull() and a
constructor to directly pass nFile and nPos
- change code to use that new constructors
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/init.cpp b/src/init.cpp index e0fbb31338..a224b336ce 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -346,9 +346,7 @@ void ThreadImport(void *data) { CImportingNow imp; int nFile = 0; while (!fShutdown) { - CDiskBlockPos pos; - pos.nFile = nFile; - pos.nPos = 0; + CDiskBlockPos pos(nFile, 0); FILE *file = OpenBlockFile(pos, true); if (!file) break; |