From 6222e804297784071e9f7a580655f0c9acdfb997 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Thu, 1 Aug 2024 21:13:45 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 2 ++ ext/base/sapxsum/src/addon.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb173bece..38325f9e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2417,6 +2417,7 @@ This release closes the following issue: ##### Bug Fixes +- [`aabe731`](https://github.com/stdlib-js/stdlib/commit/aabe7310272e138b7ae69a9297832aa7fcb21ef1) - update variable name and define `status` type - [`1fce730`](https://github.com/stdlib-js/stdlib/commit/1fce730e287d8688956b801feb547ebb6a237756) - use correct include path - [`1fde962`](https://github.com/stdlib-js/stdlib/commit/1fde962b77faff072bd6296e1fbde207ad02cbe6) - use correct dependencies in manifest file @@ -2862,6 +2863,7 @@ A total of 35 people contributed to this release. Thank you to the following con
+- [`aabe731`](https://github.com/stdlib-js/stdlib/commit/aabe7310272e138b7ae69a9297832aa7fcb21ef1) - **fix:** update variable name and define `status` type _(by Athan Reines)_ - [`43439d0`](https://github.com/stdlib-js/stdlib/commit/43439d0098ad812e3276a13ecaaf41f55c501680) - **feat:** add `blas/base/dsyr` [(#2659)](https://github.com/stdlib-js/stdlib/pull/2659) _(by Aman Bhansali, Athan Reines)_ - [`b3a0bd1`](https://github.com/stdlib-js/stdlib/commit/b3a0bd1a3e9bcdde3af048c7d6b6cfcd3765138f) - **docs:** fix example order _(by Athan Reines)_ - [`058f073`](https://github.com/stdlib-js/stdlib/commit/058f07330d309cf9009a7efc101029d40827ff31) - **test:** fix grammar _(by Athan Reines)_ diff --git a/ext/base/sapxsum/src/addon.c b/ext/base/sapxsum/src/addon.c index 70d6754c7..551bdd7ef 100644 --- a/ext/base/sapxsum/src/addon.c +++ b/ext/base/sapxsum/src/addon.c @@ -40,7 +40,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) { STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, X, N, strideX, argv, 2 ); napi_value v; - status = napi_create_double( env, (double)stdlib_strided_sapxsum( N, alpha, X, stride ), &v ); + napi_status status = napi_create_double( env, (double)stdlib_strided_sapxsum( N, alpha, X, strideX ), &v ); assert( status == napi_ok ); return v;