Fixed integer comparison warning.
This commit is contained in:
parent
b632145ede
commit
4d29032a64
1 changed files with 1 additions and 1 deletions
|
@ -2577,7 +2577,7 @@ bool FindBlockPos(CValidationState &state, CDiskBlockPos &pos, unsigned int nAdd
|
||||||
pos.nPos = vinfoBlockFile[nFile].nSize;
|
pos.nPos = vinfoBlockFile[nFile].nSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nFile != nLastBlockFile) {
|
if ((int)nFile != nLastBlockFile) {
|
||||||
if (!fKnown) {
|
if (!fKnown) {
|
||||||
LogPrintf("Leaving block file %i: %s\n", nFile, vinfoBlockFile[nFile].ToString());
|
LogPrintf("Leaving block file %i: %s\n", nFile, vinfoBlockFile[nFile].ToString());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue