diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-09-05 08:34:41 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-09-05 08:34:41 +0200 |
commit | 8d367c7e66e033f317f9f7943e8b718efa303935 (patch) | |
tree | a70400492e72485d3c2d441f15fbfcb561dfdd53 /src/main.cpp | |
parent | 42613c97d5dd8581d8dfd2cbe443736f8c539973 (diff) |
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 9e2ebb932e..424e8dfdd9 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; } |