Skip to content

Commit c5705ab

Browse files
committed
chore: update datatypes
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: missing_dependencies - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent dc00b12 commit c5705ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/dsyr2/src/dsyr2_cblas.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ void API_SUFFIX(c_dsyr2_ndarray)( const CBLAS_UPLO uplo, const CBLAS_INT N, cons
6666
CBLAS_INT sy = strideY;
6767
X += stdlib_strided_min_view_buffer_index( N, strideX, offsetX ); // adjust array pointer
6868
Y += stdlib_strided_min_view_buffer_index( N, strideY, offsetY ); // adjust array pointer
69-
CBLAS_INT shape[] = { N, N };
70-
CBLAS_INT strides[] = { strideA1, strideA2 };
69+
const int64_t shape[] = { N, N };
70+
const int64_t strides[] = { strideA1, strideA2 };
7171
A += stdlib_ndarray_min_view_buffer_index( 2, shape, strides, offsetA ); // adjust array pointer
7272
if ( sx < 0 ) {
7373
sx = -sx;

0 commit comments

Comments
 (0)