fix signed/unsigned usage in BlockFilePath()

pull/59/head
Philip Kaufmann 12 years ago
parent 42613c97d5
commit 8d367c7e66

@ -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;
}

Loading…
Cancel
Save