aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2012-06-18 10:48:40 -0400
committerGavin Andresen <[email protected]>2012-06-18 10:48:40 -0400
commit550c73f4c87825e8524f7f164e0bc3e80c6822b9 (patch)
treea674350fd0b5b4dd017ce5c553a268d960cbf287 /src/util.h
parentMerge pull request #1480 from fanquake/master (diff)
parentMove NOINLINE definition to test where it's used. (diff)
downloaddiscoin-550c73f4c87825e8524f7f164e0bc3e80c6822b9.tar.xz
discoin-550c73f4c87825e8524f7f164e0bc3e80c6822b9.zip
Merge branch 'signbugs' of https://github.com/wizeman/bitcoin
Resolved minor conflict in main.cpp
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index c1c91bdbc..c9b2b2f17 100644
--- a/src/util.h
+++ b/src/util.h
@@ -272,7 +272,7 @@ inline int64 GetPerformanceCounter()
#else
timeval t;
gettimeofday(&t, NULL);
- nCounter = t.tv_sec * 1000000 + t.tv_usec;
+ nCounter = (int64) t.tv_sec * 1000000 + t.tv_usec;
#endif
return nCounter;
}