From 392895b99d7c1cd9c4cc1e301f41c1fbabee9949 Mon Sep 17 00:00:00 2001 From: Yves Renard Date: Thu, 4 Jun 2026 19:35:06 +0200 Subject: [PATCH] minor fix --- src/gmm/gmm_blas_interface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gmm/gmm_blas_interface.h b/src/gmm/gmm_blas_interface.h index 2856f0e37..dcf7b5389 100644 --- include/gmm/gmm_blas_interface.h +++ include/gmm/gmm_blas_interface.h @@ -156,7 +156,7 @@ typedef struct{double r,i;} FORTRAN_BLAS_Z; // Hack due to BLAS ABI mess #if defined(GMM_BLAS_RETURN_COMPLEX_AS_ARGUMENT) # define BLAS_CPLX_FUNC_CALL(blasname, ftype, res, ...) \ - blasname(&res, __VA_ARGS__) + blasname(&res, __VA_ARGS__); #else # define BLAS_CPLX_FUNC_CALL(blasname, ftype, res, ...) \ ftype _res=blasname(__VA_ARGS__); res=decltype(res){_res.r,_res.i};