Skip to content

Commit 6222e80

Browse files
committed
Auto-generated commit
1 parent 3793f15 commit 6222e80

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2417,6 +2417,7 @@ This release closes the following issue:
24172417

24182418
##### Bug Fixes
24192419

2420+
- [`aabe731`](https://github.com/stdlib-js/stdlib/commit/aabe7310272e138b7ae69a9297832aa7fcb21ef1) - update variable name and define `status` type
24202421
- [`1fce730`](https://github.com/stdlib-js/stdlib/commit/1fce730e287d8688956b801feb547ebb6a237756) - use correct include path
24212422
- [`1fde962`](https://github.com/stdlib-js/stdlib/commit/1fde962b77faff072bd6296e1fbde207ad02cbe6) - use correct dependencies in manifest file
24222423

@@ -2862,6 +2863,7 @@ A total of 35 people contributed to this release. Thank you to the following con
28622863

28632864
<details>
28642865

2866+
- [`aabe731`](https://github.com/stdlib-js/stdlib/commit/aabe7310272e138b7ae69a9297832aa7fcb21ef1) - **fix:** update variable name and define `status` type _(by Athan Reines)_
28652867
- [`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)_
28662868
- [`b3a0bd1`](https://github.com/stdlib-js/stdlib/commit/b3a0bd1a3e9bcdde3af048c7d6b6cfcd3765138f) - **docs:** fix example order _(by Athan Reines)_
28672869
- [`058f073`](https://github.com/stdlib-js/stdlib/commit/058f07330d309cf9009a7efc101029d40827ff31) - **test:** fix grammar _(by Athan Reines)_

ext/base/sapxsum/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static napi_value addon( napi_env env, napi_callback_info info ) {
4040
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, X, N, strideX, argv, 2 );
4141

4242
napi_value v;
43-
status = napi_create_double( env, (double)stdlib_strided_sapxsum( N, alpha, X, stride ), &v );
43+
napi_status status = napi_create_double( env, (double)stdlib_strided_sapxsum( N, alpha, X, strideX ), &v );
4444
assert( status == napi_ok );
4545

4646
return v;

0 commit comments

Comments
 (0)