diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-07-18 08:49:52 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-07-18 08:49:52 -0400 |
commit | e6c0fb2b6db185448cdcbf479047cdbe525ef8a9 (patch) | |
tree | 544021e40bfc4956b4cbb669890e5af21b205e91 /src/test/test_pt.c | |
parent | d7ccb6a3b1d6f2884bdcd6ff60cddbd826f6e0eb (diff) | |
download | tor-e6c0fb2b6db185448cdcbf479047cdbe525ef8a9.tar.gz tor-e6c0fb2b6db185448cdcbf479047cdbe525ef8a9.zip |
Fix a wide line in test_pt.c
Diffstat (limited to 'src/test/test_pt.c')
-rw-r--r-- | src/test/test_pt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/test_pt.c b/src/test/test_pt.c index 84b7a59ef0..ac97cf9fb0 100644 --- a/src/test/test_pt.c +++ b/src/test/test_pt.c @@ -94,7 +94,8 @@ test_pt_parsing(void) reset_mp(mp); /* Include some arguments. Good ones. */ - strlcpy(line,"SMETHOD trebuchet 127.0.0.1:9999 ARGS:counterweight=3,sling=snappy", + strlcpy(line,"SMETHOD trebuchet 127.0.0.1:9999 " + "ARGS:counterweight=3,sling=snappy", sizeof(line)); test_assert(parse_smethod_line(line, mp) == 0); tt_int_op(1, ==, smartlist_len(mp->transports)); |