From 3505fb7d5ee5674ab7e3a66be7adf29aa1a60094 Mon Sep 17 00:00:00 2001 From: Martin Uecker Date: Tue, 1 Oct 2024 12:47:57 +0200 Subject: [PATCH] indentation --- src/affinereg.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/affinereg.c b/src/affinereg.c index 7dccf1d1c..e2e83e5b9 100644 --- a/src/affinereg.c +++ b/src/affinereg.c @@ -114,19 +114,19 @@ int main_affinereg(int argc, char* argv[argc]) switch (aff) { - case AFFINE_ALL: - trafo = (1 == rdims[2]) ? nlop_affine_2D() : nlop_affine_3D(); - break; + case AFFINE_ALL: + trafo = (1 == rdims[2]) ? nlop_affine_2D() : nlop_affine_3D(); + break; - case AFFINE_RIGID: - trafo = (1 == rdims[2]) ? nlop_affine_rigid_2D() : nlop_affine_rigid_3D(); - break; + case AFFINE_RIGID: + trafo = (1 == rdims[2]) ? nlop_affine_rigid_2D() : nlop_affine_rigid_3D(); + break; - case AFFINE_TRANS: - trafo = (1 == rdims[2]) ? nlop_affine_translation_2D() : nlop_affine_translation_3D(); - break; + case AFFINE_TRANS: + trafo = (1 == rdims[2]) ? nlop_affine_translation_2D() : nlop_affine_translation_3D(); + break; - assert(0); + assert(0); } long aff_dims[DIMS] = { 3, 4, [ 2 ... DIMS - 1 ] = 1 };