diff options
Diffstat (limited to 'src/or/test.c')
-rw-r--r-- | src/or/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/test.c b/src/or/test.c index a72e2a401..8c1361f63 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -2000,7 +2000,7 @@ test_util_control_formats(void) "..This is a test\r\nof the emergency \nbroadcast\r\n..system.\r\nZ.\r\n"; size_t sz; - sz = read_escaped_data(inp, strlen(inp), 1, &out); + sz = read_escaped_data(inp, strlen(inp), &out); test_streq(out, ".This is a test\nof the emergency \nbroadcast\n.system.\nZ.\n"); test_eq(sz, strlen(out)); |