]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix compilation of 27686 on master.
authorNick Mathewson <nickm@torproject.org>
Fri, 14 Sep 2018 14:22:11 +0000 (10:22 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 14 Sep 2018 14:22:11 +0000 (10:22 -0400)
src/core/or/connection_edge.h

index a1da8a34cf473a999dafd14dacce86a36d862fd0..71ea95d6e5613adf6054f39a2cd612c86377bd61 100644 (file)
@@ -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))