commit bb1081cd719c8cad8b3fcb08e8f7c951f1feb447
parent 40d4d707200359000fdd1ee5e05cf55d6a597236
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Fri, 20 Apr 2018 14:47:45 +0200
Spacing
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/test_senc2d_many_enclosures.c b/src/test_senc2d_many_enclosures.c
@@ -26,7 +26,7 @@ static void
get_ctx_indices(const unsigned iseg, unsigned ids[2], void* context)
{
struct context* ctx = context;
- (void) ctx;
+ (void)ctx;
ASSERT(ids && ctx);
ASSERT(2 * iseg + 1 < sa_size(ctx->indices));
get_indices(iseg, ids, context);
@@ -36,7 +36,7 @@ static void
get_ctx_position(const unsigned ivert, double pos[2], void* context)
{
struct context* ctx = context;
- (void) ctx;
+ (void)ctx;
ASSERT(pos && ctx);
ASSERT(2 * ivert + 1 < sa_size(ctx->positions));
get_position(ivert, pos, context);
@@ -46,7 +46,7 @@ static void
get_ctx_media(const unsigned iseg, unsigned medium[2], void* context)
{
struct context* ctx = context;
- (void) iseg;
+ (void)iseg;
ASSERT(medium && ctx);
medium[ctx->reverse_med ? 1 : 0] = *ctx->front_media;
medium[ctx->reverse_med ? 0 : 1] = *ctx->back_media;