From: svost Date: Wed, 22 Apr 2015 13:32:19 +0000 (+0300) Subject: Fix MSVC C4146 warning. X-Git-Tag: nvc-v0.5.3~23^2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=58059819792b948f008119cb7fdb64d26c964e66 Fix MSVC C4146 warning. --- diff --git a/src/util.cpp b/src/util.cpp index 8cc62eb..f4d229e 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -1271,7 +1271,7 @@ void ShrinkDebugFile() { // Restart the file with some of the end char pch[200000]; - fseek(file, (long long)-sizeof(pch), SEEK_END); + fseek(file, -((long long)sizeof(pch)), SEEK_END); int nBytes = fread(pch, 1, sizeof(pch), file); fclose(file);