From: Danny Al-Gaaf Date: Mon, 27 Oct 2014 17:24:36 +0000 (+0100) Subject: test/librbd/fsx.c: fix indentation (NESTING_INDENT_MISMATCH) X-Git-Tag: v0.88~22^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=09edada98c4427c24ff0c68dcd21d02669e0809b;p=ceph.git 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 --- diff --git a/src/test/librbd/fsx.c b/src/test/librbd/fsx.c index 182e6426ffa6..4acb512efa04 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; }