[tor-commits] [tor/master] Fix a 32-bit compilation failure

nickm at torproject.org nickm at torproject.org
Thu Jun 30 17:47:49 UTC 2016


commit 6d2f006bf471b12a599acf60e517b1cdbcb0e333
Author: Nick Mathewson <nickm at torproject.org>
Date:   Thu Jun 30 13:47:45 2016 -0400

    Fix a 32-bit compilation failure
---
 src/or/routerparse.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/or/routerparse.h b/src/or/routerparse.h
index 2eb9932..f898ab1 100644
--- a/src/or/routerparse.h
+++ b/src/or/routerparse.h
@@ -101,7 +101,7 @@ typedef struct {
   time_t when;
 } dumped_desc_t;
 
-EXTERN(size_t, len_descs_dumped);
+EXTERN(uint64_t, len_descs_dumped);
 EXTERN(smartlist_t *, descs_dumped);
 STATIC int routerstatus_parse_guardfraction(const char *guardfraction_str,
                                             networkstatus_t *vote,



More information about the tor-commits mailing list