Skip to content

Commit 327d765

Browse files
committed
fix: use correct variable names and fix configuration file
1 parent 80fb571 commit 327d765

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/ext/base/dssum/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@stdlib/napi/argv",
4343
"@stdlib/napi/export",
4444
"@stdlib/napi/argv-int64",
45-
"@stdlib/napi/argv-strided-float32array",
45+
"@stdlib/napi/argv-strided-float32array"
4646

4747
]
4848
},

lib/node_modules/@stdlib/blas/ext/base/dssum/src/addon.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
static napi_value addon( napi_env env, napi_callback_info info ) {
3636
STDLIB_NAPI_ARGV( env, info, argv, argc, 3 );
3737
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
38-
STDLIB_NAPI_ARGV_INT64( env, strideX, argv, 2 );
39-
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, X, N, strideX, argv, 1 );
38+
STDLIB_NAPI_ARGV_INT64( env, stride, argv, 2 );
39+
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, X, N, stride, argv, 1 );
4040

4141
napi_value v;
42-
status = napi_create_double( env, stdlib_strided_dssum( N, X, stride ), &v );
42+
napi_status status = napi_create_double( env, stdlib_strided_dssum( N, X, stride ), &v );
4343
assert( status == napi_ok );
4444

4545
return v;

0 commit comments

Comments
 (0)