From: Nick Mathewson Date: Fri, 14 Sep 2018 14:22:11 +0000 (-0400) Subject: Fix compilation of 27686 on master. X-Git-Tag: tor-0.3.5.2-alpha~17^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eaeb4c1082b7133ec96c4f570818b2a8f4880141;p=thirdparty%2Ftor.git Fix compilation of 27686 on master. --- diff --git a/src/core/or/connection_edge.h b/src/core/or/connection_edge.h index a1da8a34cf..71ea95d6e5 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))