aboutsummaryrefslogtreecommitdiff
path: root/src/net.h
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2014-02-26 12:16:03 -0500
committerGavin Andresen <gavinandresen@gmail.com>2014-02-26 12:16:03 -0500
commite3e65d29b70c64808b3ab5c58ce0b3bcefaadc5d (patch)
tree9453db3d22436dcd60c45ce880ecf7c0b683850f /src/net.h
parent3480bf7c650bb14a31020c3ef33e76edea650e13 (diff)
parent2f5da74362fb65201f1403bba3c63ce5e9d024e7 (diff)
downloadbitcoin-e3e65d29b70c64808b3ab5c58ce0b3bcefaadc5d.tar.xz
Merge pull request #3735 from laanwj/2014_02_remove_PRIx64_completely
Remove PRIx64 usage completely
Diffstat (limited to 'src/net.h')
-rw-r--r--src/net.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.h b/src/net.h
index da590f89e1..8a7531d61b 100644
--- a/src/net.h
+++ b/src/net.h
@@ -423,7 +423,7 @@ public:
nRequestTime = it->second;
else
nRequestTime = 0;
- LogPrint("net", "askfor %s %"PRId64" (%s)\n", inv.ToString().c_str(), nRequestTime, DateTimeStrFormat("%H:%M:%S", nRequestTime/1000000).c_str());
+ LogPrint("net", "askfor %s %d (%s)\n", inv.ToString().c_str(), nRequestTime, DateTimeStrFormat("%H:%M:%S", nRequestTime/1000000).c_str());
// Make sure not to reuse time indexes to keep things in the same order
int64_t nNow = (GetTime() - 1) * 1000000;