diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-16 13:46:12 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-16 13:46:12 -0400 |
commit | 078debb0ded16e7f8d79d5aa6f4184ae5ad44ff9 (patch) | |
tree | 77a167d5bb2799a6ce881bdc7dd5e1d6deeda605 | |
parent | 991bec67ee41fd7f3c12e9194d96491b51bedd50 (diff) | |
parent | 7fd61cf536543283353b618d5bba9a1db637ed14 (diff) | |
download | tor-078debb0ded16e7f8d79d5aa6f4184ae5ad44ff9.tar.gz tor-078debb0ded16e7f8d79d5aa6f4184ae5ad44ff9.zip |
Merge branch 'bug25573-034-typefix'
-rw-r--r-- | src/test/test_relaycell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_relaycell.c b/src/test/test_relaycell.c index eddba65915..2d020ec472 100644 --- a/src/test/test_relaycell.c +++ b/src/test/test_relaycell.c @@ -38,8 +38,8 @@ void connection_free_minimal(connection_t*); int connected_cell_format_payload(uint8_t *payload_out, const tor_addr_t *addr, uint32_t ttl); -int pathbias_count_valid_cells(origin_circuit_t *circ, - cell_t *cell); +void pathbias_count_valid_cells(origin_circuit_t *circ, + cell_t *cell); half_edge_t *connection_half_edge_find_stream_id( const smartlist_t *half_conns, streamid_t stream_id); |