From 09edada98c4427c24ff0c68dcd21d02669e0809b Mon Sep 17 00:00:00 2001 From: Danny Al-Gaaf Date: Mon, 27 Oct 2014 18:24:36 +0100 Subject: [PATCH] test/librbd/fsx.c: fix indentation (NESTING_INDENT_MISMATCH) Fix indentation to the same as the original fsx.c . Fix for Coverity issue: CID 1219473 (#1-2 of 2): Nesting level does not match indentation (NESTING_INDENT_MISMATCH) uncle: This statement is indented to column 25, as if it were nested within the preceding parent statement, but it is not. Signed-off-by: Danny Al-Gaaf --- src/test/librbd/fsx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/librbd/fsx.c b/src/test/librbd/fsx.c index 182e6426ffa67..4acb512efa041 100644 --- a/src/test/librbd/fsx.c +++ b/src/test/librbd/fsx.c @@ -1280,14 +1280,14 @@ do_punch_hole(unsigned offset, unsigned length) if (length == 0) { if (!quiet && testcalls > simulatedopcount) prt("skipping zero length punch hole\n"); - log4(OP_SKIPPED, OP_PUNCH_HOLE, offset, length); + log4(OP_SKIPPED, OP_PUNCH_HOLE, offset, length); return; } if (file_size <= (loff_t)offset) { if (!quiet && testcalls > simulatedopcount) prt("skipping hole punch off the end of the file\n"); - log4(OP_SKIPPED, OP_PUNCH_HOLE, offset, length); + log4(OP_SKIPPED, OP_PUNCH_HOLE, offset, length); return; } -- 2.39.5