From 54a5c398aaa1d53b5892c9b0aa5539ae7da651da Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Mon, 29 Nov 2010 22:42:07 +0100 Subject: s4:torture - prefer the termination "return"s at the end of two unittests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Autobuild-User: Matthias Dieter Wallnöfer Autobuild-Date: Mon Nov 29 23:29:23 CET 2010 on sn-devel-104 --- source4/torture/basic/base.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'source4/torture/basic') diff --git a/source4/torture/basic/base.c b/source4/torture/basic/base.c index 995357302b..0e168ed95b 100644 --- a/source4/torture/basic/base.c +++ b/source4/torture/basic/base.c @@ -1340,7 +1340,7 @@ static bool run_iometer(struct torture_context *tctx, for (i=0; i torture_numops) { - return true; + break; } res = smbcli_read(cli->tree, fnum, buf, random() % filesize, sizeof(buf)); @@ -1351,7 +1351,7 @@ static bool run_iometer(struct torture_context *tctx, for (i=0; i torture_numops) { - return true; + break; } res = smbcli_write(cli->tree, fnum, 0, buf, random() % filesize, sizeof(buf)); @@ -1360,6 +1360,8 @@ static bool run_iometer(struct torture_context *tctx, smbcli_errstr(cli->tree))); } } + + return true; } /** -- cgit