diff options
| author | Satoshi Nakamoto <[email protected]> | 2010-08-12 13:28:22 +0000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2010-08-12 13:28:22 +0000 |
| commit | 819adfff6fda7ba2ccf5c4b9fb8b5fdc7a1b535c (patch) | |
| tree | ebc152e838cdde27a40fd667be9f7cdd449263bc /rpc.cpp | |
| parent | disable SSE2 on 32-bit (diff) | |
| download | discoin-819adfff6fda7ba2ccf5c4b9fb8b5fdc7a1b535c.tar.xz discoin-819adfff6fda7ba2ccf5c4b9fb8b5fdc7a1b535c.zip | |
fix build, thanks jgarzik
Diffstat (limited to 'rpc.cpp')
| -rw-r--r-- | rpc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |