From 12e2394b5a987196f97d7292dcd2bc2818cd4a69 Mon Sep 17 00:00:00 2001 From: Sran012 <88543485+Sran012@users.noreply.github.com> Date: Sun, 15 Mar 2026 12:28:13 +0000 Subject: [PATCH] chore: fix C lint errors --- 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: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: missing_dependencies - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../strided/special/smskinv/benchmark/c/benchmark.length.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/math/strided/special/smskinv/benchmark/c/benchmark.length.c b/lib/node_modules/@stdlib/math/strided/special/smskinv/benchmark/c/benchmark.length.c index 6018d6919732..4bb1eb3aa03f 100644 --- a/lib/node_modules/@stdlib/math/strided/special/smskinv/benchmark/c/benchmark.length.c +++ b/lib/node_modules/@stdlib/math/strided/special/smskinv/benchmark/c/benchmark.length.c @@ -115,9 +115,9 @@ float rand_uniformf( float a, float b ) { */ static double benchmark( int iterations, int len ) { double elapsed; - uint8_t m[ len ]; - float x[ len ]; - float y[ len ]; + uint8_t m[ len ] = { 0 }; + float x[ len ] = { 0 }; + float y[ len ] = { 0 }; double t; int i;