From: svost Date: Fri, 25 Sep 2015 20:13:31 +0000 (+0300) Subject: Fix msvc c4267 warning X-Git-Tag: nvc-v0.5.4~2^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=09effd299a712bf55c5ffca932e95a245e2e736c Fix msvc c4267 warning --- diff --git a/src/util.cpp b/src/util.cpp index d434c81..2f28b95 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1272,7 +1272,7 @@ void ShrinkDebugFile() // Restart the file with some of the end char pch[200000]; fseek(file, -((long long)sizeof(pch)), SEEK_END); - int nBytes = fread(pch, 1, sizeof(pch), file); + size_t nBytes = fread(pch, 1, sizeof(pch), file); fclose(file); file = fopen(pathLog.string().c_str(), "w");