aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/connection_edge.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-09-14 10:22:11 -0400
committerNick Mathewson <nickm@torproject.org>2018-09-14 10:22:11 -0400
commiteaeb4c1082b7133ec96c4f570818b2a8f4880141 (patch)
tree15cdb754cbf91c850d880c274623512fb0a1bccd /src/core/or/connection_edge.h
parent994de7db5345a1c1a2c182000d6e2bd42df5ae57 (diff)
downloadtor-eaeb4c1082b7133ec96c4f570818b2a8f4880141.tar.gz
tor-eaeb4c1082b7133ec96c4f570818b2a8f4880141.zip
Fix compilation of 27686 on master.
Diffstat (limited to 'src/core/or/connection_edge.h')
-rw-r--r--src/core/or/connection_edge.h3
1 files changed, 2 insertions, 1 deletions
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))