[tor-commits] [tor/maint-0.3.1] remove a redundant semicolon
nickm at torproject.org
nickm at torproject.org
Fri Feb 16 14:56:18 UTC 2018
commit 22a5d3dd2ab793336e911d3aceb8cacd278e0f48
Author: Nick Mathewson <nickm at torproject.org>
Date: Tue Jan 30 18:11:16 2018 -0500
remove a redundant semicolon
---
src/test/test_dos.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/test_dos.c b/src/test/test_dos.c
index 9496b0735..6db98b9ed 100644
--- 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:
More information about the tor-commits
mailing list