From 3107d8771c5544521b6d015e10e24705d7646b72 Mon Sep 17 00:00:00 2001 From: Martin Uecker Date: Mon, 27 May 2024 23:03:14 +0200 Subject: [PATCH] clang fix --- src/num/matexp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/num/matexp.c b/src/num/matexp.c index feb6ff245..50ddef82a 100644 --- a/src/num/matexp.c +++ b/src/num/matexp.c @@ -33,7 +33,7 @@ void mat_exp(int N, float t, float out[N][N], const float in[N][N]) static void zode_matrix_interval(float h, float tol, int N, complex float x[N], float st, float end, const complex float matrix[N][N]) { #ifdef __clang__ - const void* matrix2 = matrix1; // clang workaround + const void* matrix2 = matrix; // clang workaround #endif NESTED(void, zode_matrix_fun, (float* x, float t, const float* in)) {