From: Nick Mathewson Date: Thu, 18 Jul 2013 12:49:52 +0000 (-0400) Subject: Fix a wide line in test_pt.c X-Git-Tag: tor-0.2.5.1-alpha~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6c0fb2b6db185448cdcbf479047cdbe525ef8a9;p=thirdparty%2Ftor.git Fix a wide line in test_pt.c --- 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));