From 45ec7d6f24d7df9751823c431cf4302d96b333d0 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 26 Jul 2011 20:49:32 +0200 Subject: s3: Fix formatting --- source3/torture/test_async_echo.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/torture/test_async_echo.c b/source3/torture/test_async_echo.c index 3fdf1d541b..fba01575d5 100644 --- a/source3/torture/test_async_echo.c +++ b/source3/torture/test_async_echo.c @@ -111,7 +111,8 @@ bool run_async_echo(int dummy) memset(buf, 0, sizeof(buf)); for (i=0; i<10; i++) { - req = cli_write_andx_send(ev, ev, cli, 4711, 0, buf, 0, sizeof(buf)); + req = cli_write_andx_send(ev, ev, cli, 4711, 0, buf, 0, + sizeof(buf)); if (req == NULL) { printf("cli_write_andx_send failed\n"); goto fail; @@ -119,7 +120,8 @@ bool run_async_echo(int dummy) tevent_req_set_callback(req, cli_close_done, &num_reqs); num_reqs += 1; - req = cli_echo_send(ev, ev, cli, 1, data_blob_const("hello", 5)); + req = cli_echo_send(ev, ev, cli, 1, + data_blob_const("hello", 5)); if (req == NULL) { printf("cli_echo_send failed\n"); goto fail; -- cgit