commit d2ae1bfcb314965fd1ff1353308da0e92a00c958
parent cd81403cc0d73d53cb7f3650b38d49c54100af25
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: