fix build, thanks jgarzik

This commit is contained in:
Satoshi Nakamoto 2010-08-12 13:28:22 +00:00 committed by Gavin Andresen
parent f5d2bc8a36
commit 819adfff6f
1 changed files with 2 additions and 2 deletions

View File

@ -225,8 +225,8 @@ Value gethashespersec(const Array& params, bool fHelp)
"Returns a recent hashes per second performance measurement while generating.");
if (GetTimeMillis() - nHPSTimerStart > 8000)
return (int64)0;
return (int64)dHashesPerSec;
return (boost::int64_t)0;
return (boost::int64_t)dHashesPerSec;
}