From dd4b65ed78c1a5ebafe151e8456921892df83df0 Mon Sep 17 00:00:00 2001 From: "William T. Nelson" <35801+wtn@users.noreply.github.com> Date: Wed, 15 Oct 2025 23:14:51 -0500 Subject: [PATCH] fix comparison in ger.c --- ext/numo/linalg/blas/tmpl/ger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/numo/linalg/blas/tmpl/ger.c b/ext/numo/linalg/blas/tmpl/ger.c index 02e785c..5e94b9c 100644 --- a/ext/numo/linalg/blas/tmpl/ger.c +++ b/ext/numo/linalg/blas/tmpl/ger.c @@ -103,7 +103,7 @@ static VALUE ans = na_ndloop3(&ndf, &g, 3, x, y, a); - if (ndf.nout = 1) { // a is not given. + if (ndf.nout == 1) { // a is not given. return ans; } else { return a;