From 237cfd200d9061962b98ac17726602d2e681ea33 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 18 Mar 2019 14:56:54 +0100 Subject: mg2d: remove unused variable. --- mg2d.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'mg2d.c') diff --git a/mg2d.c b/mg2d.c index 1370aea..9949eee 100644 --- a/mg2d.c +++ b/mg2d.c @@ -838,7 +838,6 @@ MG2DContext *mg2d_solver_alloc(size_t domain_size) { MG2DContext *ctx; MG2DInternal *priv; - int ret; if (domain_size < 3 || SIZE_MAX / domain_size < domain_size) return NULL; @@ -860,7 +859,6 @@ MG2DContext *mg2d_solver_alloc(size_t domain_size) for (int i = 0; i < ARRAY_ELEMS(ctx->boundaries); i++) { ctx->boundaries[i] = mg2di_bc_alloc(domain_size); if (!ctx->boundaries[i]) { - ret = -ENOMEM; goto fail; } } -- cgit v1.2.3