diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-09 12:54:40 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-09 12:54:40 -0400 |
commit | 19f2057d4999b4dfe8b06feafb92063e803d02c2 (patch) | |
tree | 093e5bf4921c026483fb8eacef7778210842ebe3 /src/feature/nodelist/microdesc.c | |
parent | eb856a3e51e14690ede533dd84bef48ae818eefe (diff) | |
download | tor-19f2057d4999b4dfe8b06feafb92063e803d02c2.tar.gz tor-19f2057d4999b4dfe8b06feafb92063e803d02c2.zip |
Fix some lingering windows compilation issues from Jenkins.
These were caused by the recent refactoring.
Diffstat (limited to 'src/feature/nodelist/microdesc.c')
-rw-r--r-- | src/feature/nodelist/microdesc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/nodelist/microdesc.c b/src/feature/nodelist/microdesc.c index 4d6285d6cf..d9630b4f1d 100644 --- a/src/feature/nodelist/microdesc.c +++ b/src/feature/nodelist/microdesc.c @@ -723,7 +723,7 @@ microdesc_cache_rebuild(microdesc_cache_t *cache, int force) log_warn(LD_BUG, "Discontinuity in position in microdescriptor cache." "By my count, I'm at %"PRId64 ", but I should be at %"PRId64, - (off), (off_real)); + (int64_t)(off), (int64_t)(off_real)); if (off_real >= 0) off = off_real; } |