mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Fixing C4146 warning
Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
This commit is contained in:
parent
b50e5fe099
commit
1e73504865
@ -304,7 +304,7 @@ private:
|
|||||||
// If the input vector's most significant byte is 0x80, remove it from
|
// If the input vector's most significant byte is 0x80, remove it from
|
||||||
// the result's msb and return a negative.
|
// the result's msb and return a negative.
|
||||||
if (vch.back() & 0x80)
|
if (vch.back() & 0x80)
|
||||||
return -(result & ~(0x80ULL << (8 * (vch.size() - 1))));
|
return -((int64_t)(result & ~(0x80ULL << (8 * (vch.size() - 1)))));
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -618,7 +618,7 @@ void ShrinkDebugFile()
|
|||||||
{
|
{
|
||||||
// Restart the file with some of the end
|
// Restart the file with some of the end
|
||||||
std::vector <char> vch(200000,0);
|
std::vector <char> vch(200000,0);
|
||||||
fseek(file, -vch.size(), SEEK_END);
|
fseek(file, -((long)vch.size()), SEEK_END);
|
||||||
int nBytes = fread(begin_ptr(vch), 1, vch.size(), file);
|
int nBytes = fread(begin_ptr(vch), 1, vch.size(), file);
|
||||||
fclose(file);
|
fclose(file);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user