From c36deaf3af02531ff40d6960b8deaa0141bc2524 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 8 Aug 2012 12:15:16 +0200 Subject: [PATCH] s3:torture:delete: remove an else, reducing indentation --- source3/torture/torture.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 31318c622fe..d2089253206 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -3932,8 +3932,9 @@ static bool run_deletetest(int dummy) cli_unlink(cli1, fname, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN); correct = False; goto fail; - } else - printf("second delete on close test succeeded.\n"); + } + + printf("second delete on close test succeeded.\n"); /* Test 3 - ... */ cli_setatr(cli1, fname, 0, 0); -- 2.11.4.GIT