diff options
| author | Philip Kaufmann <[email protected]> | 2012-09-05 08:34:41 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2012-09-05 08:34:41 +0200 |
| commit | 8d367c7e66e033f317f9f7943e8b718efa303935 (patch) | |
| tree | a70400492e72485d3c2d441f15fbfcb561dfdd53 /src/main.cpp | |
| parent | Add block file naming helper, BlockFilePath() (diff) | |
| download | discoin-8d367c7e66e033f317f9f7943e8b718efa303935.tar.xz discoin-8d367c7e66e033f317f9f7943e8b718efa303935.zip | |
fix signed/unsigned usage in BlockFilePath()
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 9e2ebb932..424e8dfdd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1993,7 +1993,7 @@ bool CheckDiskSpace(uint64 nAdditionalBytes) static filesystem::path BlockFilePath(unsigned int nFile) { - string strBlockFn = strprintf("blk%04d.dat", nFile); + string strBlockFn = strprintf("blk%04u.dat", nFile); return GetDataDir() / strBlockFn; } |