[tor-commits] [tor/master] Fix compilation of 27686 on master.

nickm at torproject.org nickm at torproject.org
Tue Sep 18 20:41:09 UTC 2018


commit eaeb4c1082b7133ec96c4f570818b2a8f4880141
Author: Nick Mathewson <nickm at torproject.org>
Date:   Fri Sep 14 10:22:11 2018 -0400

    Fix compilation of 27686 on master.
---
 src/core/or/connection_edge.h | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/core/or/connection_edge.h b/src/core/or/connection_edge.h
index a1da8a34c..71ea95d6e 100644
--- a/src/core/or/connection_edge.h
+++ b/src/core/or/connection_edge.h
@@ -186,7 +186,8 @@ int connection_half_edge_is_valid_resolved(smartlist_t *half_conns,
                                            streamid_t stream_id);
 
 size_t half_streams_get_total_allocation(void);
-void half_edge_free_(half_edge_t *he);
+struct half_edge_t;
+void half_edge_free_(struct half_edge_t *he);
 #define half_edge_free(he) \
   FREE_AND_NULL(half_edge_t, half_edge_free_, (he))
 





More information about the tor-commits mailing list