From 09effd299a712bf55c5ffca932e95a245e2e736c Mon Sep 17 00:00:00 2001 From: svost Date: Fri, 25 Sep 2015 23:13:31 +0300 Subject: [PATCH] Fix msvc c4267 warning --- src/util.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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"); -- 1.7.1