diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-03 11:00:18 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-03 11:00:18 -0400 |
commit | 02a4442524d84ea7edf6e3f136017faa73452d92 (patch) | |
tree | b7870d99b8b95f63b11cb29e0ac1a435bd673c95 /src/or/channel.c | |
parent | d5a3bb960d41873ccfde0bbdb4adfb762528069e (diff) | |
download | tor-02a4442524d84ea7edf6e3f136017faa73452d92.tar.gz tor-02a4442524d84ea7edf6e3f136017faa73452d92.zip |
Fix up some windows compilation issues.
These were mostly cases where our previous macros had been casting,
and the values that we were trying to printf were not in fact
uint64_t.
Diffstat (limited to 'src/or/channel.c')
-rw-r--r-- | src/or/channel.c | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/src/or/channel.c b/src/or/channel.c index 9b57eccd7d..6ab02f3b29 100644 --- a/src/or/channel.c +++ b/src/or/channel.c @@ -2544,10 +2544,10 @@ channel_dump_statistics, (channel_t *chan, int severity)) " (%"PRIu64 " seconds ago) " "and last active at %"PRIu64 " (%"PRIu64 " seconds ago)", (chan->global_identifier), - (chan->timestamp_created), - (now - chan->timestamp_created), - (chan->timestamp_active), - (now - chan->timestamp_active)); + (uint64_t)(chan->timestamp_created), + (uint64_t)(now - chan->timestamp_created), + (uint64_t)(chan->timestamp_active), + (uint64_t)(now - chan->timestamp_active)); /* Handle digest. */ if (!tor_digest_is_zero(chan->identity_digest)) { @@ -2624,20 +2624,20 @@ channel_dump_statistics, (channel_t *chan, int severity)) " * Channel %"PRIu64 " was last used by a " "client at %"PRIu64 " (%"PRIu64 " seconds ago)", (chan->global_identifier), - (chan->timestamp_client), - (now - chan->timestamp_client)); + (uint64_t)(chan->timestamp_client), + (uint64_t)(now - chan->timestamp_client)); tor_log(severity, LD_GENERAL, " * Channel %"PRIu64 " last received a cell " "at %"PRIu64 " (%"PRIu64 " seconds ago)", (chan->global_identifier), - (chan->timestamp_recv), - (now - chan->timestamp_recv)); + (uint64_t)(chan->timestamp_recv), + (uint64_t)(now - chan->timestamp_recv)); tor_log(severity, LD_GENERAL, " * Channel %"PRIu64 " last transmitted a cell " "at %"PRIu64 " (%"PRIu64 " seconds ago)", (chan->global_identifier), - (chan->timestamp_xmit), - (now - chan->timestamp_xmit)); + (uint64_t)(chan->timestamp_xmit), + (uint64_t)(now - chan->timestamp_xmit)); /* Describe counters and rates */ tor_log(severity, LD_GENERAL, @@ -2727,19 +2727,19 @@ channel_listener_dump_statistics(channel_listener_t *chan_l, int severity) " (%"PRIu64 " seconds ago) " "and last active at %"PRIu64 " (%"PRIu64 " seconds ago)", (chan_l->global_identifier), - (chan_l->timestamp_created), - (now - chan_l->timestamp_created), - (chan_l->timestamp_active), - (now - chan_l->timestamp_active)); + (uint64_t)(chan_l->timestamp_created), + (uint64_t)(now - chan_l->timestamp_created), + (uint64_t)(chan_l->timestamp_active), + (uint64_t)(now - chan_l->timestamp_active)); tor_log(severity, LD_GENERAL, " * Channel listener %"PRIu64 " last accepted an incoming " "channel at %"PRIu64 " (%"PRIu64 " seconds ago) " "and has accepted %"PRIu64 " channels in total", (chan_l->global_identifier), - (chan_l->timestamp_accepted), - (now - chan_l->timestamp_accepted), - (chan_l->n_accepted)); + (uint64_t)(chan_l->timestamp_accepted), + (uint64_t)(now - chan_l->timestamp_accepted), + (uint64_t)(chan_l->n_accepted)); /* * If it's sensible to do so, get the rate of incoming channels on this @@ -3477,4 +3477,3 @@ channel_update_bad_for_new_circs(const char *digest, int force) channel_rsa_id_group_set_badness(&(*iter)->channel_list, force); } } - |