commit 22a5d3dd2ab793336e911d3aceb8cacd278e0f48
parent f08fa974600625e4ea0b21d0143d28fe280008d5
Author: Nick Mathewson <nickm@torproject.org>
Date: Tue, 30 Jan 2018 18:11:16 -0500
remove a redundant semicolon
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/test_dos.c b/src/test/test_dos.c
@@ -78,7 +78,7 @@ static int
mock_channel_get_addr_if_possible(channel_t *chan, tor_addr_t *addr_out)
{
(void)chan;
- tt_int_op(AF_INET,OP_EQ, tor_addr_parse(addr_out, "18.0.0.1"));;
+ tt_int_op(AF_INET,OP_EQ, tor_addr_parse(addr_out, "18.0.0.1"));
return 1;
done: