[tor-commits] [tor/maint-0.3.2] Fix a 32-bit formatting warning
    nickm at torproject.org 
    nickm at torproject.org
       
    Mon Nov  6 15:16:22 UTC 2017
    
    
  
commit bebdd910580ba13de02743ecfedb34bd2b2842a4
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Nov 6 10:16:10 2017 -0500
    Fix a 32-bit formatting warning
---
 src/or/scheduler.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/or/scheduler.c b/src/or/scheduler.c
index 97b6d40b1..1438dc60f 100644
--- a/src/or/scheduler.c
+++ b/src/or/scheduler.c
@@ -687,7 +687,7 @@ scheduler_bug_occurred(const channel_t *chan)
                  chan->global_identifier,
                  channel_state_to_string(chan->state),
                  chan->scheduler_state, circuitmux_num_cells(chan->cmux),
-                 outbuf_len);
+                 (unsigned long)outbuf_len);
   }
 
   {
    
    
More information about the tor-commits
mailing list