summaryrefslogtreecommitdiff
path: root/src/or/circuitlist.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-05-26 14:05:50 -0400
committerNick Mathewson <nickm@torproject.org>2017-05-26 14:07:06 -0400
commit6fcaf83c98df4a12149cd4b5956cd96f3e59ccfd (patch)
treea382e4ee2ca8f59a8f487bfe79f25794838dce30 /src/or/circuitlist.c
parent5742e4fd8ea28c21f4f8f8a809c88a0b31a5d73d (diff)
downloadtor-6fcaf83c98df4a12149cd4b5956cd96f3e59ccfd.tar.gz
tor-6fcaf83c98df4a12149cd4b5956cd96f3e59ccfd.zip
Cleanup MOCK_IMPL (etc) to be findable with etags
A fair number of our mock_impl declarations were messed up so that even our special AM_ETAGSFLAGS couldn't find them. This should be a whitespace-only patch.
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r--src/or/circuitlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c
index 5761890924..86b0aa097a 100644
--- a/src/or/circuitlist.c
+++ b/src/or/circuitlist.c
@@ -359,8 +359,8 @@ channel_note_destroy_pending(channel_t *chan, circid_t id)
/** Called to indicate that a DESTROY is no longer pending on <b>chan</b> with
* circuit ID <b>id</b> -- typically, because it has been sent. */
-MOCK_IMPL(void, channel_note_destroy_not_pending,
- (channel_t *chan, circid_t id))
+MOCK_IMPL(void,
+channel_note_destroy_not_pending,(channel_t *chan, circid_t id))
{
circuit_t *circ = circuit_get_by_circid_channel_even_if_marked(id,chan);
if (circ) {